There\'s the a
Set AutoPostBack property of your DropDownList control to true.
DropDownList
true
<asp:DropDownList AutoPostBack="true" runat="server" ID="myListDropDown" CssClass="text" OnSelectedIndexChanged="myListDropDown_Change" />
Autopostback property of the DropDownList needs to be set to 'true'.