0

我试图在网格视图的 EditItemTemplate 上找到一个 DropDownList 控件,以便在绘制之前用查询的结果填充它,但从未找到该控件。

ddlParent == null

总是!

我可能遗漏了一些非常明显的东西,但我已经尝试了大约 8 种不同的方法来让这个查找控件工作,但无论我做什么,它都会出现空值。

我已经包含了 ASP 和 C#,sql 应该不重要,因为我什至无法接听电话!

ASP:

            <asp:TemplateField SortExpression="LocationArea2.Name" HeaderText="Parent Location Area">
                <ItemTemplate>
                    <asp:Label runat="server" Text='<%# Eval("LocationArea2.Name") %>' />
                </ItemTemplate>
                <EditItemTemplate>
                    <asp:DropDownList ID="ddlParent" runat="server" AppendDataBoundItems="true" DataTextField="LocationArea2.Name"
                        DataValueField="ParentID" AutoPostBack="false" SelectedValue='<%# Bind("ParentID") %>'>
                    </asp:DropDownList>
                </EditItemTemplate>
            </asp:TemplateField>

C#:

protected void gvLocationArea_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (gvLocationArea.EditIndex == e.Row.RowIndex)
        {
            DropDownList ddlParent = (DropDownList)gvLocationArea.Rows[gvLocationArea.EditIndex].FindControl("ddlParent");
            if (ddlParent != null)
            {
                using (SalesSQLEntities db = new SalesSQLEntities())
                {
                    ddlParent.DataSource = db.GetRecursiveAreaList(Convert.ToInt32(((TextBox)gvLocationArea.Rows[gvLocationArea.EditIndex].FindControl("txtLocationAreaID")).Text), true);
                    ddlParent.DataBind();
                    ddlParent.Items.Add(new ListItem("* None", ""));
                }
            }
        }
    }

我知道这里缺少一些东西,无论我尝试了什么,都找不到控件!

4

1 回答 1

1

而不是执行 FindControl,而是使用相关列的偏移索引并获取第一个控件:

(DropDownList)gvLocationArea.Rows[gvLocationArea.EditIndex].Cells[INDEX OF THE DDL].Controls[0]
于 2013-06-03T15:53:10.793 回答