Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net 在浏览器窗口顶部显示内容_Asp.net_Gridview - Fatal编程技术网

Asp.net 在浏览器窗口顶部显示内容

Asp.net 在浏览器窗口顶部显示内容,asp.net,gridview,Asp.net,Gridview,当我进行添加、删除、更新操作时,我需要始终在表单的标题位置显示此网格。任何人都请帮助我。提前谢谢 <asp:GridView ID="Grd_View" ShowFooter="True" runat="server" OnRowEditing="Grd_View_RowEditing" AutoGenerateColumns="False" DataKeyNames="CustomerCode" CellPadding="4" OnRowCommand="Grd_Vi

当我进行添加、删除、更新操作时,我需要始终在表单的标题位置显示此网格。任何人都请帮助我。提前谢谢

      <asp:GridView ID="Grd_View" ShowFooter="True" runat="server" OnRowEditing="Grd_View_RowEditing" AutoGenerateColumns="False"
    DataKeyNames="CustomerCode" CellPadding="4" OnRowCommand="Grd_View_RowCommand" GridLines="None"
    AllowPaging="True" AllowSorting="True" CssClass="style2" ForeColor="#333333" Width="569px" OnRowDataBound="Grd_View_RowDataBound" OnRowDeleting="Grd_View_RowDeleting">
    <FooterStyle BackColor="#555555" ForeColor="White" Font-Bold="True" />
    <Columns>
        <asp:BoundField DataField="CustomerCode" HeaderText="CustomerCode" InsertVisible="False"
            ReadOnly="True" SortExpression="CustomerCode" />

        <asp:BoundField DataField="CustomerName" HeaderText="CustomerName" SortExpression="CustomerName" />

        <asp:BoundField DataField="Address" HeaderText="Address" SortExpression="Address" />
        <asp:BoundField DataField="TellNo" HeaderText="TellNo" SortExpression="TellNo" />
        <asp:BoundField DataField="FaxNo" HeaderText="FaxNo" SortExpression="FaxNo" />
        <asp:BoundField DataField="Email" HeaderText="Email" SortExpression="Email" />
        <asp:TemplateField>
            <ItemTemplate>
                <asp:LinkButton ID="btnEdit" runat="server" CommandArgument='<%#Eval("CustomerCode")%>' CommandName="Edit" Text="Edit">
                </asp:LinkButton>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField>
            <ItemTemplate>
                <asp:LinkButton ID="btnDelete" runat="server" CommandArgument='<%#Eval("CustomerCode")%>' CommandName="Delete" Text="Delete">
                </asp:LinkButton>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField>
            <FooterTemplate>
                <asp:LinkButton ID="btnNew" runat="server" CommandArgument='<%#Eval("CustomerCode")%>' CommandName="New" Text="New">
                </asp:LinkButton>
            </FooterTemplate>
        </asp:TemplateField>

    </Columns>

    <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
    <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
    <PagerStyle BackColor="#777777" ForeColor="White" HorizontalAlign="Center" />
    <HeaderStyle BackColor="#555555" Font-Bold="True" ForeColor="White" />
    <EditRowStyle BackColor="#999999" />
    <AlternatingRowStyle BackColor="White" ForeColor="#284775" />

</asp:GridView>

必须将栅格视图包装在固定标题的固定Div中 例如:


将栅格视图放在具有顶部、左侧和位置样式的div标记内,如下所述:

<div style="top: 0%; left: 45%; position: absolute; z-index: 999">
    <asp:GridView ID="Grd_View" ShowFooter="True" runat="server" OnRowEditing="Grd_View_RowEditing" AutoGenerateColumns="False"
        DataKeyNames="CustomerCode" CellPadding="4" OnRowCommand="Grd_View_RowCommand" GridLines="None"
        AllowPaging="True" AllowSorting="True" CssClass="style2" ForeColor="#333333" Width="569px" OnRowDataBound="Grd_View_RowDataBound" OnRowDeleting="Grd_View_RowDeleting">
        ...
        ...
        ...
    </asp:GridView>
</div>

我的意思是,当我打开表单时,网格视图应该出现在顶部和中间位置,先生…看看我的答案。希望它能帮助你解决你的问题。别忘了投票并将其标记为答案,这样它也可以帮助其他开发人员。
<div style="top: 0%; left: 45%; position: absolute; z-index: 999">
    <asp:GridView ID="Grd_View" ShowFooter="True" runat="server" OnRowEditing="Grd_View_RowEditing" AutoGenerateColumns="False"
        DataKeyNames="CustomerCode" CellPadding="4" OnRowCommand="Grd_View_RowCommand" GridLines="None"
        AllowPaging="True" AllowSorting="True" CssClass="style2" ForeColor="#333333" Width="569px" OnRowDataBound="Grd_View_RowDataBound" OnRowDeleting="Grd_View_RowDeleting">
        ...
        ...
        ...
    </asp:GridView>
</div>