我有一个网格视图,我在其中添加,更新数据。要添加数据,我使用了页脚模板。在页面加载网格视图数据源为空,因此它没有显示页脚 - 标题的属性
ShowHeaderWhenEmpty="True"
但我找不到添加页脚的属性。 网格视图为空时如何显示页脚?
答案 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>