dropdownload无法触发selectedIndexchanged事件
首先我想说一下,网上这个问题一大堆,但是没有一个能解决我的问题的。我先说明:dropdownload控件的AutoPostBack我已经设成了true.而且没有去连数据库,只是静态的控件
代码如下:
<body>
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="dll1" runat="server" AutoPostBack="True"
onselectedindexchanged="dll1_SelectedIndexChanged">
<asp:ListItem>aa</asp:ListItem>
<asp:ListItem>bb</asp:ListItem>
<asp:ListItem>cc</asp:ListItem>
</asp:DropDownList>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
触发事件代码:
public partial class web2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void dll1_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Redirect("vote.aspx");
}
}
但是在我切换选项时,没有出现页面跳转!