I have an ASP.net page with a GridView.

The GridView has a number of rows, each with an associated ID number. I would like to make ASP.net output something like <tr data-rowId='123'>...</tr> for each row. I know that I can make it output <tr class='123'> using the cssClass attribute on the GridRow object, but is it possible to use custom data attributes on an ASP.net GridView?

link|improve this question

68% accept rate
Can you put data-rowID as one of the fields in your Gridview, and make it hidden? – Robert Harvey Jul 12 '11 at 19:22
This looks like it might be what you are looking for, but the code in the answer appears to be incomplete: stackoverflow.com/questions/1063602/… – Robert Harvey Jul 12 '11 at 19:26
1  
A previous developer did something like what Robert describes. She would then use $.parent to get the row, but this seems like a kludge. – Daniel Allen Langdon Jul 12 '11 at 19:51
1  
A lot of what goes on in ASP.NET seems like a kludge to me. – Robert Harvey Jul 12 '11 at 19:58
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.