overDeveloper
Programmer
In a datagrid I have a column type HyperLink - I want the Navigate URL to be dynamic as in:
page.aspx?id=<%=Request["var"]%>
How would I do this?
page.aspx?id=<%=Request["var"]%>
How would I do this?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<asp:HyperLink id="hlgglSearch" runat="server" NavigateUrl='<%# String.Format("[URL unfurl="true"]http://www.google.com/search?hl=en&q={0}",DataBinder.Eval(Container.DataItem,"SearchString"))%>'>Search[/URL] Google</asp:HyperLink>