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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top