vote up 0 vote down star

I face a weird problem. I have a simple aspx page with a dropdownlist. The dropdown gets filled through a function which is called from Page_Load() event. The dropdown item selection triggers event OnSelectedIndexChanged. Now the event triggers rightly but what happens that upon post back the dropdownlist gets initialized, that is, it shows empty. Never faced this type of issue before so i wonder what's happening wrong.

The piece of code follow:

protected void Page_Load(object sender, EventArgs e)
{
     if(!Page.IsPostBack)
        PopulateCompanyList(GetCompanies(serverUNCPath));
    return;
}
flag
Is your DropdownList in updatepanel ? – Myra Aug 25 at 10:06

3 Answers

vote up 0 vote down

Babur were you able to get a solution to this query ever?

link|flag
vote up 0 vote down

The very first ideas:

  1. Check EnableViewState property of your dropdown and all the parent controls up to the root (should not be false)
  2. You perform rebinding on postbacks without storing SelectedValue property
  3. If one of your parent controls is custom or dynamic it may incorrectly persist ViewState info (including children).
link|flag
vote up 1 vote down

Is ViewState disabled on your dropdownlist, or perhaps the whole application?

link|flag

Your Answer

Get an OpenID
or

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