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)?
You can always attach client event handlers with Attributes property. Depending on the component you might have to call client-side __doPostBack function.
Eliyahu
"A. Nonymous" <anonymous@hotm ail.com> wrote in message news:3JOdnfQjZ-PUvnDcRVn-tw@giganews.com ...
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)?
Comment