I have an asp.net page with a list box on it. Multiple event handlers subscribe to its OnSelectedIndexChanged
event.
When I change the SelectedIndex
programmatically none of the events get fired.
Now a hack for this is to call each event handler, but this has already caused bugs since people didn't know they had to do this when adding a new event handler.
I can do this in a Winforms app and even when SelectedIndex
is changed in code the events fire. Has anyone seen this before?