Web Object and JavaScript...

  • Thread starter Thread starter A. Nonymous
  • Start date Start date
A

A. Nonymous

Is there some way to get a web object (i.e. a button, <asp:Button />) to not only respond to ASP.NET procedure but run a JavaScript function at the same time responding to the same event (i.e. OnClick)?

TIA...
 
You can always attach client event handlers with Attributes property. Depending on the component you might have to call client-side __doPostBack function.

Eliyahu

Is there some way to get a web object (i.e. a button, <asp:Button />) to not only respond to ASP.NET procedure but run a JavaScript function at the same time responding to the same event (i.e. OnClick)?

TIA...
 
Back
Top