0

我有一个网格视图,如果数据库为特定列返回 null,我想插入一个从数据库填充的下拉列表。

这是我必须确定该列是否为空并且工作正常的代码。

protected void viewThemeTypeAssociationsGridView_OnRowDataBound(Object sender, GridViewRowEventArgs e)
{
    if (e.Row.Cells[1].Text == " ")
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
         //fill current rows cell with a dropdown list
     }
}

此外,一旦我填充了该行,当有多个版本时,我如何知道具体使用的是哪个下拉列表?

4

1 回答 1

3

使可能填充的下拉列表成为行模板的一部分。默认情况下使下拉列表不可见,然后仅在使用数据库中的数据填充它时才使其可见。

在没有看到您的代码的情况下,我猜您正在使用TemplateFields 在网格视图中定义列,如下所示:

<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()方法会为您正在使用的行获取“正确的”。

于 2013-07-26T21:00:37.387 回答