Codebehind中的ASP.NET下拉列表与ASPX页面中的相关联

时间:2010-02-17 15:14:18

标签: asp.net drop-down-menu code-behind selectedindexchanged

我在代码隐藏中生成一个下拉列表,无法自动触发selectedindexchanged事件。直接放入ASPX页面时它工作正常,但我需要它在代码隐藏中。

这不起作用:

var deptList = new DropDownList
    {
        ID = "deptList",
        DataSource = departments,
        DataTextField = "deptname",
        DataValueField = "deptid",
        AutoPostBack = true,
        EnableViewState = true
    };

deptList.SelectedIndexChanged += new EventHandler(deptList_SelectedIndexChanged);
deptList.DataSource = departments;
deptList.DataTextField = "deptname";
deptList.DataValueField = "deptid";

if (!IsPostBack)
    deptList.DataBind();

deptList.Items.Insert(0, new ListItem("---Select Department---", string.Empty));

writer.Write("Select a department: ");
deptList.RenderControl(writer);

但这有效:

<asp:DropDownList ID="deptList" AutoPostBack="true" runat="server" OnSelectedIndexChanged="deptList_SelectedIndexChanged"></asp:DropDownList>

5 个答案:

答案 0 :(得分:7)

问题可能在于您没有及早将控件添加到页面。需要在页面生命周期的早期添加控件以使其事件处于捆绑状态。

你可能在Load事件中这样做,为时已晚。尝试在Init事件期间添加它或覆盖CreateChildControls方法。

编辑:正如Dave Swersky所提到的,请确保在每个页面请求(包括回发)上执行此操作。

答案 1 :(得分:2)

您的代码中有一个网格物体。尝试划分创建,数据绑定和事件调用。

示例:

<asp:DropDownList ID="deptList" AutoPostBack="true" runat="server"></asp:DropDownList>

然后在代码后面(页面加载):

deptList.SelectedIndexChanged += new EventHandler(deptList_SelectedIndexChanged);

if (!IsPostBack)
{
     deptList.DataTextField = "deptname";
     deptList.DataValueField = "deptid";
     deptList.DataSource = departments;
     deptList.DataBind();
     deptList.Items.Insert(0, new ListItem("---Select Department---", string.Empty));
}

答案 2 :(得分:2)

详细说明Mike Mooney的答案:您还需要确保在每次回发时将控件添加回控件树每次回发都会重新创建控件树,从标记中读取。如果以编程方式再次添加它并且从不再添加它,则树中无法控制接收事件。

答案 3 :(得分:0)

您似乎没有将控件添加到控件集合中。您必须在控件层次结构中的某处添加控件,并确保在每次回发时添加该控件以确保存在接收事件的控件。通过添加控件,您不需要直接调用RenderControl。

答案 4 :(得分:0)

我遇到的问题是,如果下拉列表没有AutoPostBack = true,那么它永远不会调用该函数。