I am dynamically creating a table which I want to have clickable rows. When the user clicks on one of the rows I want to redirect to a page specific to the item of that row. My question is how on the server side can I wire the "onclick" event to a routine that will then allow me to build a url based on some of the data included in the row they clicked?
for example I would want to do this on click:
Response.Redirect("SomePage.aspx?" itemType + "&" + COLUMN1VALUE)
;
where COLUMN1VALUE would be the first column in the row that was clicked.