ASP 下拉列表 OnSelectedIndexChange 事件不触发



我已经看了很多关于这个的文章和问题。但仍然没有找到我案子的答案。该函数处理事件。它根本不起作用我的代码:

ASPX

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Popup.aspx.cs"
     Inherits="GG.UI.Popup" %>
...
<asp:DropDownList ID="LEDropdown" runat="server" AutoPostBack="true" 
                  OnSelectedIndexChanged="LEDropdown_Change" ></asp:DropDownList>

ASPX.CS

protected void Page_Load(object sender, EventArgs e)
{
   if (!IsPostBack)
   {
      PopulateClist();
      BindGrid();
   }
}
protected void PopulateClist()
{
   LEDropdown.Items.Clear();
   LEDropdown.Items.Add(new ListItem("First Item", "First");
   LEDropdown.Items.Add(new ListItem("Second Item", "Second");
   LEDropdown.SelectedIndex = 0;
}
protected void LEDropdown_Change(object sender, EventArgs arg)
{
   string selectedLE = ((DropDownList)(sender)).SelectedValue;
   ClientScript.RegisterStartupScript(GetType(), "Alert", "alert('" + selectedLE + "');");
}

我尝试使用EnableViewState="true"为这个页面和主页以及。没有工作。
函数LEDropdown_Change从未被调用。

选择后,该页仍会返回。

有另一个按钮与OnClick事件,它工作得很好

<asp:DropDownList ID="LEDropdown" runat="server" AutoPostBack="true" OnSelectedIndexChanged="LEDropdown_Change" ></asp:DropDownList>

你的下拉列表正在调用LEDropdown_Change

但是你的onchange事件叫做:LegalEntityDropdown_Change

相关内容

  • 没有找到相关文章

最新更新