Dropdownlist in Repeater Control Handling Postback

  • Thread starter Thread starter Charlie Brown
  • Start date Start date
C

Charlie Brown

I'm pretty sure this has worked for me before, but it's getting me
nowhere today. The Index Changed event never fires the method.
Autopostback is set to true in the designer.

In the ItemDataBound Event, I am adding a handler for the dropdownlist

Dim ddl as DropDownList = Ctype(e.Item.FindControl("uxDDL"),
DropDownList)
AddHandler ddl.SelectedIndexChanged, New EventHandler(AddressOf
uxDDL_SelectedIndexChanged)
 
Back
Top