Maybe someone has run across this problem before:
I have an ASP.NET/
VB.NET application where a particular user control is giving me some erratic behavior.
The instance of the control that works is first loaded in another user control before it is loaded into the final page.
The instance of the control that doesn't work is simply loaded into the same page as the other embedded instance.
The user control has a drop down list with autopostback set to true. In the embedded instance, the SelectedIndexChanged event handler runs without a problem and passes back the list's SelectedIndex property exactly as it should.
In the instance residing in the page, the SelectedIndexChange event handler never runs and always passes back a SelectedIndex property value of 0, no matter which value I actually select.
Does anything here really jump out at anybody here? Has anybody here experienced something similar? This is driving me nuts at this point...
Thanks,
thanie2001