Can anyone tell me how the HyperLinkColumn works? I have a data grid where I want to click on an item and then go to a page with more info on that item. Right now, the link just has something like: http://localhost/demo/2333 where 2333 is the id of the data I need. I obviously need something like: http://localhost/demo/detail.aspx?id=2333.<BR><BR>Thanks for any insight.<BR><BR><BR>PS: Is there a better way to do this instead of using a hyperlinkcolumn to transfer specific data field?Try populating one field of the datagrid with the URL and then add something like this in HTML edit mode:<BR><BR><columns><BR> <asp:hyperlinkcolumn DataNavigateURLField="Name_Of_YOur_URL_Field" text="View Product" target="_blank" /><BR></columns><BR><BR>I think that something like that will work.