I would like to send a label value whith the querystring. How do I do that?
<asp:Label ID="lblForward" runat="server" Text="0" Visible="false"></asp:Label>
<a href="../Product/?ProductID=<%#Eval("ProductID") %>&BrandID=<%#Eval("BrandID") %>&Sizes=<%#Eval("lblForward.Text") %>">GO</a>
this lblForward.Text is the value that I want to pass whith the Querysting. Its always 0 or 1.
<%#...%>is only applicable to data binding contexts. You can try