What are the asp:DropDownList client side events?

ASD picture ASD · Aug 10, 2009 · Viewed 74.8k times · Source

I want to know the client side events (like onChange) for an asp:DropDownList.

Answer

RaYell picture RaYell · Aug 10, 2009

Are you talking about ASP app? This app produces HTML code so you have all HTML events available, which for the select tag (select is a HTML tag for dropdown lists) are the following:

  • onchange
  • onclick
  • ondblclick
  • onmousedown
  • onmouseup
  • onmouseover
  • onmousemove
  • onmouseout
  • onkeypress
  • onkeydown
  • onkeyup
  • onfocus
  • onblur