我想为gridview中的每个条目添加一个下拉列表。
<asp:GridView ID="GridView1" runat="server"
AutoGenerateColumns="False"
onselectedindexchanged="GridView1_SelectedIndexChanged">
<Columns>
<asp:TemplateField HeaderText="Bank">
<ItemTemplate>
<asp:DropDownList ID="DropDown"
AutoPostBack="true" runat="server" DataTextField="Name" DataValueField="Name"
>
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
在后端,我有以下代码,以便将数据表绑定到该下拉列表。
DataTable reader = BusinessLayer.BusinessLayerHandler.GetBankList();
DropDown.DataSource = reader;
DropDown.DataTextField = "NAME";
DropDown.DataValueField = "NAME";
DropDown.DataBind();
我的问题是在后端找不到在网格视图(DropDown)中创建的下拉列表,就好像它不存在一样。
我该怎么办?
答案 0 :(得分:8)
将为DropDownList
中的每个项目创建GridView
,因此无法成为下拉列表的一个字段。不过,您可以检索单行的DropDownList(例如,在RowDataBound
或RowCreated
事件中)
protected void grid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(r.Row.RowType == DataControlRowType.DataRow)
{
DropDownList dropdown = e.Row.FindControl("DropDown") as DropDownList;
if(dropdown != null)
{ /* your code */ }
}
}
或者您可以使用DropDownList
本身的事件并访问sender
参数。
<asp:DropDownList ID="DropDown" OnLoad="dropdownLoad" />
protected void dropdownLoad(object sender, EventArgs e)
{
DropDownList dropdown = sender as DropDownList;
if(dropdown != null)
{ /* your code */ }
}
答案 1 :(得分:-1)
您可以dropdown
向grid databound event
找到grid.findcontrol
。