vote up 1 vote down star

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?

flag

3 Answers

vote up 1 vote down check

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 Page_Load() to Page_Init().

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.

link|flag
vote up 3 vote down
this.Request.Form[this.List.ClientID];
link|flag
vote up 2 vote down
string selectedValue = Request.Form["MyDropDownList"];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.