在TemplateField中操作DropDownList

时间:2011-05-26 18:51:46

标签: c# asp.net gridview drop-down-menu templatefield

我在GridView中的TemplateField中有一个下拉列表。

我想动态地向它添加列表项,并编写代码以在索引更改时进行处理。我如何操作列表,因为当它在TemplateField中时我无法直接引用DropDownList。

这是我的代码:

<asp:TemplateField HeaderText="Transfer Location" Visible="false">
   <EditItemTemplate>
      <asp:DropDownList ID="ddlTransferLocation" runat="server" ></asp:DropDownList>
   </EditItemTemplate>
 </asp:TemplateField>

1 个答案:

答案 0 :(得分:0)

如果我理解你想要做什么,你可以像下面这样处理你的下拉菜单:

foreach (GridViewRow currentRow in gvMyGrid.Rows)
{
    DropDownList myDropDown = (currentRow.FindControl("ddlTransferLocation") as DropDownList);
    if (myDropDown != null)
    {
        myDropDown.Items.Add(new ListItem("some text", "a value"));
    }
}

然后,如果您的意思是处理DropDownList的索引更改,您只需要向控件添加一个事件处理程序:

<asp:DropDownList ID="ddlTransferLocation" runat="server" OnSelectedIndexChanged="ddlTransferLocation_SelectedIndexChanged" AutoPostBack="true"></asp:DropDownList>

然后在该事件处理程序中,您可以使用(sender as DropDownList)从中获取所需内容:

protected void ddlTransferLocation_SelectedIndexChanged(object sender, EventArgs e)
{
    DropDownList myDropDown = (sender as DropDownList);
    if (myDropDown != null) // do something
    {
    }
}