使可能填充的下拉列表成为行模板的一部分。默认情况下使下拉列表不可见,然后仅在使用数据库中的数据填充它时才使其可见。
在没有看到您的代码的情况下,我猜您正在使用TemplateField
s 在网格视图中定义列,如下所示:
<asp:GridView id="viewThemeTypeAssociationsGridView" ruant="server" OnRowDataBound="viewThemeTypeAssociationsGridView_OnRowDataBound">
<Columns>
<asp:TemplateField HeaderText="FirstName" SortExpression="FirstName">
<ItemTemplate>
<asp:DropDownList id="DropDownList1" runat="server" Visible="False">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
现在对于网格视图中的每一行,当您在RowDataBound
事件中时,您可以找到下拉列表,如下所示:
if (e.Row.RowType == DataControlRowType.DataRow)
{
// Find the drop down list by name
DropDownList theDropDownList = (DropDownList)e.Row.FindControl("DropDownList1");
// Go get data from database and populate the drop down list
// Change visibility of drop down list here
theDropDownList.Visible = true;
}
DropDownList1
注意:在网格视图的每一行中都会有一个控件命名,并且该FindControl()
方法会为您正在使用的行获取“正确的”。