SelectedIndexChanged event never fires !
I have a DropDownList placed on a certain aspx page (Visual Studio 2005,C#). However, when I select something on it, it never fires the SelectedIndexChanged event.
Do I need to define something in the initialize component area?
protected void DropDownList_Inspection_SelectedIndexChanged(object sender, EventArgs e)
{
string str_selected_Inspection = this.DropDownList_Inspection.Text.ToString() }
[432 byte] By [
rkbnair] at [2007-11-11 7:38:53]

# 2 Re: SelectedIndexChanged event never fires !
All other comboboxes fires except one in the same page. So, I hope that the autopostback property is set right.