I have a label inside a gridview, the ds_Value for that record is 10...how can i insert a text along side with the eval variable
<asp:GridView ...
<asp:TemplateField>
<ItemTemplate>
<asp:Label ID="lb" Text='Val: <%# Eval("ds_Value") %>' runat="server"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
...
- The Result is "Val: "
- I want "Val: 10"