SelectedIndexChanged NOT Firing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

SelectedIndexChanged NOT Firing in my DropDown ListBox
AutoPostBack = true
EnableViewState = True

Autpostback works, but the SelectedIndexChanged Event does not fire !!!

regards
Paul
 
Hi!

Have you tried to set breakpoint in both page load and drop down event
handler to see what happened?


Regards,
Sin Min
 
yes i tried that,
the page load event gets fires,
but it just skips the SelectedIndexChanged event for the dropdown
 
Make sure you're not databinding again on the postback; also make sure you
choose a different element--if you simply re-choose the same element (just
open the dropdown, the event won't get fired
 
Back
Top