Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
protected void ddlEnvironment_SelectedIndexChanged(object sender, EventArgs e)
{
    if (ddlEnvironment.SelectedIndex == 0)
    {
        ddlServers.Items.Add("item1");
    }

    if (ddlEnvironment.SelectedIndex == 1)
    {
        ddlServers.Items.Add("item2");
    }

    if (ddlEnvironment.Text == "Production")
    {
    }
}

The above is not working. When I make a selection on ddlEnvironment and it is the first item on the list (index 0), the other dropdownlist is not upading with "item1". Why?

share|improve this question
When you debug the code, what is the value of ddlEnvironment.SelectedIndex? – Dave Zych Sep 7 '12 at 16:21
Are you check with firebug or other, if the callback is goin to the server? See Networking. – Alberto León Sep 7 '12 at 16:22
Try this: asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/… - Fun AJAX Control Tool Kit – bugnuker Sep 7 '12 at 16:53

2 Answers

up vote 2 down vote accepted

There could be different reasons by default dropdown list do no do postback.

  • Check if you have AutoPostBack="true"
  • You bind the ddlEnvironment in !Page.IsPostBack block so that it maintains its state on postback

    if(!Page.IsPostBack) { ddlEnvironment.AuutoPostBack = true; ddlEnvironment.DataSource = datasource; ddlEnvironment.DataBind(); }

share|improve this answer
it was this. it fixed the problem. thanks! :) ps. 9 mins till i can accept it – Testifier Sep 7 '12 at 16:23
You are welcome. – Adil Sep 7 '12 at 16:27

I assume you have AutoPostBack=true - right?

If you're initializing ddlEnvironment in your Page_Load() event handler, it's being reset on postback.

You need to do something like this:

If (!Page.IsPostback)
{ 
    // initialize ddlEnvironment here 
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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