GridView如何在gridview为空时显示页脚

时间:2014-11-08 07:25:44

标签: c# asp.net gridview

我有一个网格视图,我在其中添加,更新数据。要添加数据,我使用了页脚模板。在页面加载网格视图数据源为空,因此它没有显示页脚 - 标题的属性

ShowHeaderWhenEmpty="True"

但我找不到添加页脚的属性。 网格视图为空时如何显示页脚?

1 个答案:

答案 0 :(得分:0)

尝试这样的事情:

<asp:GridView ID="gvCustomers" runat="server" Width="550px"
AutoGenerateColumns="false"
Font-Names="Arial" Font-Size="11pt" AlternatingRowStyle-BackColor="#C2D69B"
HeaderStyle-BackColor="green"
AllowPaging="true" ShowFooter="true" OnPageIndexChanging="OnPaging" PageSize="10">
<Columns>
    <asp:BoundField HeaderText="CustomerID" DataField="CustomerId" FooterText="Footer" />
    <asp:BoundField HeaderText="Contact Name" DataField="ContactName" FooterText="Footer" />
    <asp:BoundField HeaderText="Company Name" DataField="CompanyName" FooterText="Footer" />
</Columns>
<AlternatingRowStyle BackColor="#C2D69B" />
</asp:GridView>

参考:http://www.aspsnippets.com/Articles/Display-GridView-with-Empty-Message-and-Header-and-Footer-when-no-data-in-ASP.Net.aspx