I'm having trouble with this piece of code
e.Row.Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink(GridView1, "Select$" + e.Row.RowIndex);
This is working fine when i click on the row but it's causing me troubles when i click on a button on this row because it start doing the button logic but then it does the click on the row.
I would like to know how to make the row clickable but not when i click on one of the buttons inside of it.
Thanks