2

我有一个当前看起来像这样的gridview: 网格视图

我想使用显示添加新行的按钮制作单元格,以跨越其上方按钮的 2 列。

此外,我想在其他 4 列上添加文本框,并有效地使该行成为“添加用户行”我是初学者并且仍在试验,详细的解释将非常有帮助。

这是html代码:

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
    CodeFile="Admin.aspx.cs" Inherits="_Default" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
    <link href="css/admin.css" rel="stylesheet" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <header class="grid_9">פאנל מנהל</header>
    <div class="grid_9 block_head">
        טבלת משתמשים
    </div>
    <div class="block grid_9" id="user_block" runat="server">
        <asp:GridView ID="gdview" OnRowEditing="gdview_RowEditing" DataKeyNames="id" AutoGenerateColumns="False"
            CssClass="Grid" OnRowUpdating="gdview_RowUpdating" OnRowCancelingEdit="gdview_RowCancelingEdit"
            runat="server" HeaderStyle-CssClass="tableheader" OnRowDeleting="gdview_RowDeleting" OnRowCreated="RowCreated"
            ShowFooter="true">
            <Columns>
                <asp:BoundField HeaderText="מספר מזהה" DataField="id" ReadOnly></asp:BoundField>
                <asp:BoundField HeaderText="שם משתמש" DataField="username"></asp:BoundField>
                <asp:BoundField HeaderText="סיסמא" DataField="password"></asp:BoundField>
                <asp:BoundField HeaderText="אימייל" DataField="email"></asp:BoundField>

                <asp:CommandField ShowEditButton="True" CancelText="בטל" UpdateText="עדכן" EditText="ערוך"></asp:CommandField>

                <asp:TemplateField>
                    <ItemTemplate>
                        <asp:LinkButton ID="lnkdel" runat="server" Text="מחק" CommandName="Delete"></asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>

                <asp:TemplateField>
                    <FooterTemplate>
                        <asp:Button ID="ButtonAdd" runat="server" Text="Add New Row" />
                    </FooterTemplate>
                </asp:TemplateField>

            </Columns>
        </asp:GridView>
    </div>
</asp:Content>

谢谢!

4

1 回答 1

2

这可能会帮助某人。以下链接上的解决方案对我有用: https ://www.codeproject.com/Answers/544063/HowplustoplusMergepluscellsplusinplusAsp-netplusGr#answer1

来自链接的片段:

gvitems.FooterRow.Cells[0].ColumnSpan = 7;
gvitems.FooterRow.Cells.RemoveAt(1);
gvitems.FooterRow.Cells.RemoveAt(2);
gvitems.FooterRow.Cells.RemoveAt(3);
gvitems.FooterRow.Cells.RemoveAt(4);
gvitems.FooterRow.Cells.RemoveAt(5);
gvitems.FooterRow.Cells.RemoveAt(6);
于 2017-03-23T14:21:40.710 回答