c# - una - listas desplegables enlazadas excel
Evento de cambio de lista desplegable de C# (2)
Establezca la propiedad AutoPostBack
de su control DropDownList
en true
.
<asp:DropDownList AutoPostBack="true" runat="server" ID="myListDropDown"
CssClass="text" OnSelectedIndexChanged="myListDropDown_Change" />
<asp:DropDownList runat="server" ID="myListDropDown" CssClass="text" OnSelectedIndexChanged="myListDropDown_Change" />
Ahí está el aspx arriba
protected void myListDropDown_Change(object sender, EventArgs e)
{
//stuff that never gets hit
}
Puse un punto de ruptura en el método myListDropDown, pero nunca se ve afectado. ¿Alguna sugerencia?
La propiedad Autopostback de DropDownList debe establecerse en ''true''.