Yes. Because the maserpage has EnableViewState with false, the page will not keep the view state. By default, the SelectedIndex of a DropdownList control will be 0, and SelectedIndex property of RadioButtonList will be -1. If the selected index is not queal to the default value, the SelectedIndexChanged event will always fired. To test it, you can selected the second item or third item ect but not the first one, the event is fired. It is right. and then, select the first item(index=0) of dropdownlist you will find the event will not be fired. Right. the default selectedindex the page remember is 0. Therefore, to solve such problem, the only approach is to set the EnableViewState property of Master and Page to true. If you need to set it to false, I am afraid you have to try to find some way to avoid to set the EnableViewState to false.
Johnson