Is there a Gridview element to display another page in new Page while can get what is clicked ? Now I have this hyperlink field with Target set to _blank
 <asp:HyperlinkField DataNavigateUrlFields="ID001"                                         DataNavigateUrlFormatString="Details.aspx" HeaderText="Details" Text="Click" Target="_blank" />
I have whenever this link is clicked, ID001 is stored to label1.text (and then store in database and I have code already).
So my requirement is to store ID001 to label.text when user click it.
How ?
Thanks

Go to the complete details ...