Querystring parameters in repeater template
-
I am developing an asp.net application using vb. I have a hyperlink control in my repeater template and I am not able to dynamically create parameters for its querystring. The parameter is the same value as the text. The reason I am using a hyperlink against a linkbutton is that I want the target window to be a popup. Runat="server" ID="Hyperlink1">
-
I am developing an asp.net application using vb. I have a hyperlink control in my repeater template and I am not able to dynamically create parameters for its querystring. The parameter is the same value as the text. The reason I am using a hyperlink against a linkbutton is that I want the target window to be a popup. Runat="server" ID="Hyperlink1">
-
Try: Text = <%# DataBinder.Eval(CType(Container, RepeaterItem).DataItem, "Name") & "?ID=" & DataBinder.Eval(CType(Container,RepeaterItem).DataItem,"OtherField") %> Runat="server" ID="Hyperlink1"> Tim Curtin