Web Object and JavaScript...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • A. Nonymous

    Web Object and JavaScript...

    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...
  • Eliyahu Goldin

    #2
    Re: Web Object and JavaScript...

    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)?

    TIA...

    Comment

    Working...