vote up 3 vote down star
1

What is the best way to determine which ASP.NET button was clicked on a single page using JavaScript?

flag

77% accept rate

3 Answers

vote up 2 vote down check

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.

protected void Page_Load(object sender, EventsArgs e)
{
    MyButton.OnClientClick = "MyJavaScriptMethod();";
}
link|flag
vote up 4 vote down

Add a client-side onclick handler to each button pointing to the same function?

e.g.

<button onclick="myHandler(this.ID)" />
link|flag
Thanks for the answer +1.... – Michael Kniskern Dec 18 '08 at 23:16
vote up 1 vote down

You can easily add a client side Javascript click handler to an ASP button like this.

Button1.Attributes.Add("onclick", "alert('You clicked me!');");
link|flag
Thanks for the answer +1.... – Michael Kniskern Dec 18 '08 at 23:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.