I have an asp:gridview populated with SQL (MSSQL 2008) data. The cells have naivgateurl fields so I can redirect users to a special page with some charts. Since there are multiple vehicles displayed in the table, I want users to get specific info on each vehicle when they click that specific row. So basically, I want the URL to go to ~\charts\load.aspx?ID=1 where 1 is the ID number of that car in the database. Can anyone point me in the right direction? I have seen some examples, but they are not related enough to my requirements for me to figure it out. My page uses C#. Thanks for any assistance!
I have an asp:gridview populated with SQL (MSSQL 2008) data. The cells have naivgateurl
Share
You could try something like this:
You’ll need to:
I hope this is what you’re looking for.
Cheers!