What is the best way to determine which ASP.NET button was clicked on a single page using JavaScript?
|
1
|
|
|
|
|
|
I just the set the OnClientClick event handler for the button with the JavaScript function I wanted executed when the button was clicked during the Page_Load event.
|
|||
|
|
|
|
Add a client-side onclick handler to each button pointing to the same function? e.g.
|
||
|
|
|
You can easily add a client side Javascript click handler to an ASP button like this.
|
|||
|
