I have a hyperlink field in my gridview
as below:
<asp:HyperLinkField DataNavigateUrlFields="runId" DataTextField="runId" HeaderText = "RunID" DataNavigateUrlFormatString="RunAnalysis.aspx"/>
Its basically a runId
. Clicking this hyperlink will redirect to a page called RunAnalysis
. I want to access the value of the runId
which was clicked in this page.
I was thinking of using a query string but there is no event as far as I know that is fired on click of the hyperlink.
How to access the runId
value in this page? Is there an event fired so to send a query string?