Hi, I have a web app (ASP.NET 2.0 C#)where I get data from an Oracle database into a gridview. I had asked in a previous question how I could turn that data into links that would, for example, take me to a details page. This was the answer I got:
<asp:HyperLinkField DataNavigateUrlFields="ID"
DataNavigateUrlFormatString="DetailPage.aspx?id={0}"
DataTextField="CategoryName" NavigateUrl="DetailPage.aspx" />
Doing this makes the ID's links, and once I click it, the ID is in the URL of the next page.
My question is, how am I supposed to use this data from the URL to actually display the information about that ID? Do I have to do something to my code behind?
Thank you