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?