I have a nested repeater situation that looks something like this (simplified) :
repeater1
repeater2
gridview
templatefield
dropdown
/template field
/gridview
/repeater2
/repeater1
I am trying to capture OnSelectedIndexChanged of the dropdown, but when I run it thru the debugger, the event never fires at all, and the idea was to write code that makes updates to a database based on this event.
I made sure AutoPostBack="true" on the dropdown, and I also know that other events of the dropdown, such as "OnLoad" are firing, because I have code running off of that event. It just seems that OnSelectedIndex never ever happens.
What the heck is going on?
repeater1
repeater2
gridview
templatefield
dropdown
/template field
/gridview
/repeater2
/repeater1
I am trying to capture OnSelectedIndexChanged of the dropdown, but when I run it thru the debugger, the event never fires at all, and the idea was to write code that makes updates to a database based on this event.
I made sure AutoPostBack="true" on the dropdown, and I also know that other events of the dropdown, such as "OnLoad" are firing, because I have code running off of that event. It just seems that OnSelectedIndex never ever happens.
What the heck is going on?