vote up 1 vote down star

I have a drop down menu and on postback, I cannot get the selected value.

  • MasterPage EnableViewState = False
  • Content Page ViewState = true
  • DropdownList Control ViewState = true

Doesn't work

If I switch the Masterpage EnableViewState = true, it works, however the rest of the site really doesn't need view state so ideally I want it to be enabled.

The Databinding happens in the Page_Init Handler and there is a Page.IsPostBack clause in it.

Any ideas?

flag

52% accept rate

3 Answers

vote up 5 vote down check

There is only one Viewstate per page(aside from control state, which is stored in viewstate). If you turn it off at the Masterpage, it is turned off on the page.

link|flag
So setting it in the Page itself does not override it? – TimLeung Feb 10 at 22:38
The masterpage setting is overriding here and effectively Viewstate is turned off – Chris Ballance Feb 10 at 22:46
vote up 1 vote down

I think you should be able to get the dropdownlist's selected value from the Form collection (without having to enable ViewState), e.g:

if (IsPostBack)
    string selectedValue = Request.Form["Id_of_the_DropDownList"];
link|flag
vote up 2 vote down

Chris is 100% correct. If you want to only maintain state on this one control you could subclass DropDown and add control state. This works irrespective of any ViewState settings.

Here is a Phil Haack tutorial on control state.

link|flag
+1 for the Haacked tutorial – Chris Ballance Mar 6 at 16:46

Your Answer

Get an OpenID
or

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