I have a repeater. and when we click on its row its redirecting to another page along with one value. Using the code
<asp:Repeater ID="rep_Tasks" runat="server">
<ItemTemplate>
<tr onclick='window.location = "<%# ResolveClientUrl( "~/Detailpage.aspx?jtid=" + Eval("taskid") ) %>"' style="cursor: pointer;">
</ItemTemplate>
</asp:Repeater>
now there is another field that is “name” its coming through query string on this page. now i want to use this value also in tr’s on click , I don’t know how please help me.
Have you tried:
?
Also I recommend to do that in code-behind on, say ItemCreated event.