If an asp.net DropDownList's is set to EnableViewState=false, DropDownList.SelectedItem returns null.
Then what technique can I use to get the SelectedItem of that DropDownList while keeping that EnableViewState=false?
|
|
If an asp.net DropDownList's is set to EnableViewState=false, DropDownList.SelectedItem returns null. Then what technique can I use to get the SelectedItem of that DropDownList while keeping that EnableViewState=false?
|
||
|
|
|
|
My guess is that the problem is that you're data-binding the drop down list manually in the code behind file. It might help to move your data binding from But in my opinion a better solution would be to use an ObjectDataSource to fill in the values of your DropDownList. That way you're sure that you're loading in the values a the correct time in the page life cycle. |
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|