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.

I have the following DropDownList defined:

<asp:DropDownList ID="ddlStuff" CssClass="myCssClass" OnSelectedIndexChanged="PopulateAnotherDropdown" runat="server"></asp:DropDownList>

However, my PopulateAnotherDropdown method isn't firing. I have a breakpoint set on the method, and it's not being hit.

Here is my method write-up in code-behind:

public void PopulateAnotherDropdown(object sender, EventArgs e)
{
    ...
}

For what it's worth, the page is rendering as follows:

<select name="ctl00$MainContent$ddlStuff" id="MainContent_ddlStuff" class="myCssClass">

Any ideas?

share|improve this question

2 Answers

up vote 6 down vote accepted

Because you forget to add AutoPostBack="true",

To fire the SelectedIndex of dropdownlist control, it should postback the server, for that you to have to set AutoPostBack="true" the control property.

share|improve this answer
Thanks Muhammad! – WEFX Jul 25 '11 at 16:28

Please Set

AutoPostBack="true"

of the dropdown.Because by default it is false except button control

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.