dropdownlist with autopostback set to true does not fire. Please help.

  • Thread starter Thread starter Carlos
  • Start date Start date
C

Carlos

The control does not react when selecting items in the drop down.
Autopostback is set to true. Thanks in advance.

Carlos
 
Do you have code similar to this in your InitializeComponent()?
Are you using 2003 or 2005?

private void InitializeComponent()
{
this.rblChoice.SelectedIndexChanged += new System.EventHandler
(this.rblChoice_SelectedIndexChanged);

}
 
Back
Top