1

我有一个页面可以进行分层搜索,它从一个下拉列表开始,根据下拉列表中选择的值,它将查询数据库并在另一个下拉列表中显示孩子,只要它碰到叶子,它就会继续......所以我首先动态添加了下拉列表,它在 SelectedIndexChanged 上有事件处理程序,当我更改所选值时,它会触发回发但不调用事件处理程序方法..不确定我在这里做错了什么..或者是它是一个错误??

使用会话变量来跟踪创建的控件

private List<DynamicControlProperties> PersistedControls 
    {
        get
        {
            if (_persistedControls == null)
            {
                if (Session[PersistedControlsKey] == null)
                {
                    Session[PersistedControlsKey] = new List<DynamicControlProperties>();
                }

                _persistedControls = Session[PersistedControlsKey] as List<DynamicControlProperties>;
            }

            return _persistedControls;
        }
    }

在 Page Init 中,重新创建动态生成的控件

protected override void LoadViewState(object savedState)
    {
        base.LoadViewState(savedState);

        // regenerate the persisted controls
        foreach (var prop in PersistedControls)
        {
            CreateControl(prop);
        }

    }

在页面加载中,创建了第一个下拉菜单

protected void Page_Load(object sender, EventArgs e)
    {


        if (!Page.IsPostBack)
        {
           // create the control
            CreateControl(....)

           // bind the data to the dropdown
         }
   }

在创建控件方法中,只需创建一个标签和一个下拉菜单,将其包装在 a 中并将其添加到占位符

private DropDownList CreateControl(DynamicControlProperties dynamiccntrlprop)
    {
        // create a new HTML row
        HtmlGenericControlWithParentID tr = new HtmlGenericControlWithParentID("tr");
        HtmlGenericControlWithParentID td1 = new HtmlGenericControlWithParentID("td");
        HtmlGenericControlWithParentID td2 = new HtmlGenericControlWithParentID("td");

        // make sure we set the id and parentid
        tr.ID = string.Format("tr{0}", dynamiccntrlprop.ID);            
        tr.ParentID = dynamiccntrlprop.ParentID;
        tr.EnableViewState = true;

        // create a new label for dropdown
        Label lbl = new Label() { ID = string.Format("lbl{0}", dynamiccntrlprop.DisplayName), Text = dynamiccntrlprop.DisplayName };

        // create a new dropdown list
        DropDownList ddl = new DropDownList()
        {
            ID = string.Format("ddl{0}", dynamiccntrlprop.DisplayName),

            // set the postback
            AutoPostBack = true,

            EnableViewState = true
        };

        // subscribe for the select index changed event
        ddl.SelectedIndexChanged += new EventHandler(ddl_SelectedIndexChanged);

        // add the controls to table row
        td1.Controls.Add(lbl);
        td2.Controls.Add(ddl);

        tr.Controls.Add(td1);
        tr.Controls.Add(td2);

        // add the control to place holder     
        this.filtersPlaceHolder.Controls.Add(tr);

        return ddl;

    }

这是索引更改处理程序,

protected void ddl_SelectedIndexChanged(object sender, EventArgs e)
{
}

启用了视图状态,autopostback blah blah blah ...在回发中重新创建了具有相同 ID 的控件..在谷歌中尝试了所有答案..但没有运气..当我更改索引但不调用事件时,它确实触发了回发处理方法..

有什么想法好吗???

非常感谢,

4

2 回答 2

1

您必须确保在每个页面回发时调用 CreateControl 方法。这需要发生以确保动态控件的事件处理程序在回发后连接。

protected void Page_Load(object sender, EventArgs e)
{
    // you shouldn't wrap the call to CreateControl in this 'if' statement
    //if (!Page.IsPostBack)
    //{
           // create the control
            CreateControl(....)

           // bind the data to the dropdown
    //}
}

执行此操作后,将触发选定的索引更改事件。

于 2012-04-11T02:18:44.063 回答
1

也许是因为下拉列表的新值没有被加载。受保护的覆盖无效LoadViewState(对象已保存状态){

    // regenerate the persisted controls
    foreach (var prop in PersistedControls)
    {
        CreateControl(prop);
    }

    base.LoadViewState(savedState);
}
于 2012-04-11T02:21:48.380 回答