根据列值生成TextBox或DropDownList

时间:2018-09-13 09:10:08

标签: c# asp.net gridview

我的表中有名为ColumnType的列。 ColumnType应基于列TypeID中的值具有TextBox或DropDownlist。 如果TypeID列中的值为0、2、3,则应显示空白文本框;如果值为1,则应在页面上显示空白DDL。

这是从代码生成表时的外观: https://jsfiddle.net/769825dz/7/

这是C#代码,我只需从过程中获取值,然后将其逐列发送到aspx:

LogicTableAdapters.getCharacteristicTableAdapter getObChar = new LogicTableAdapters.getCharacteristicTableAdapter();

DataTable dtObChar = getObChar.getCharacteristicTableAdapter(Convert.ToInt32("1"));

DataTable dtCh = new DataTable();
dtCh.Columns.AddRange(new DataColumn[4]{ new DataColumn("CharacteristicID", typeof(string)), new DataColumn("CharacteristicName", typeof(string)), new DataColumn("ColumnType", typeof(string)), new DataColumn("TypeID", typeof(int)),});

foreach (DataRow dr in dtObChar.Rows)
{
    dtCh.Rows.Add(dr["CharacteristicID"].ToString(), dr["CharacteristicName"].ToString(), dr["ColumnType"] == DBNull.Value ? null : dr["TypeID"].ToString());
}

gvObjCharacteristic.DataSource = dtCh;
gvObjCharacteristic.DataBind();

这是从过程中生成gridview的aspx部分:

 <asp:GridView ID="gvObjCharacteristic" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False">
    <AlternatingRowStyle BackColor="White" />
    <Columns>

        <asp:TemplateField HeaderText="CharacteristicID">
            <ItemTemplate>
                <asp:Label ID="CharacteristicID" runat="server" class="ObjekatID" Width="118px" Height="26px" Style="text-align: center" Font-Names="Georgia" margin-Left="100px" Text='<%# Bind("CharacteristicID") %>'></asp:Label>


            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="CharacteristicName">
            <ItemTemplate>

                <asp:Label ID="CharacteristicName" runat="server" Width="118px" Height="26px" Style="text-align: center" Font-Names="Georgia" margin-Left="100px" Text='<%# Bind("CharacteristicName") %>'></asp:Label>

            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="ColumnType">
            <ItemTemplate>

                <asp:Label ID="ColumnType" runat="server" Width="118px" Height="26px" Style="text-align: center" Font-Names="Georgia" margin-Left="100px" Text='<%# Bind("ColumnType") %>'></asp:Label>

            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="TypeID">
            <ItemTemplate>

                <asp:Label ID="TypeID" runat="server" Width="118px" Height="26px" Font-Names="Georgia" margin-Left="100px" Text='<%# Bind("TypeID") %>'></asp:Label>

            </ItemTemplate>
        </asp:TemplateField>

    </Columns>
</asp:GridView>

我想我在c#部分中需要一些代码。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

您可以基于Column值设置TextBox或DropDownList的Visible属性。

<asp:TemplateField>
    <ItemTemplate>

        <asp:TextBox ID="TextBox1" runat="server" Visible='<%# Convert.ToInt32(Eval("TypeID")) != 1 %>'></asp:TextBox>

        <asp:DropDownList ID="DropDownList1" runat="server" Visible='<%# Convert.ToInt32(Eval("TypeID")) == 1 %>'>
            <asp:ListItem Text="Value 1" Value="1"></asp:ListItem>
            <asp:ListItem Text="Value 2" Value="2"></asp:ListItem>
            <asp:ListItem Text="Value 3" Value="3"></asp:ListItem>
        </asp:DropDownList>

    </ItemTemplate>
</asp:TemplateField>

您无需创建新的数据表,就可以做到

gvObjCharacteristic.DataSource = getObChar.getCharacteristicTableAdapter(Convert.ToInt32("1"));;