我是asp.net的新手。我对 asp:datagrid 有疑问。 网格自带的页面页脚 PagerStyle 始终位于网格底部。我希望将 PagerStyle 修复为 asp:datagrid 的页脚。
我当前的代码
<asp:datagrid id="grdPageTemplate">
<!-- Code to make the columns of my grid-->
<PagerStyle HorizontalAlign="Right" Mode="NumericPages" Position="Bottom" CssClass="footer"></PagerStyle>
我曾尝试制作一个CSS类来执行此操作,但它不会那样工作。请帮帮我。
我正在使用的CSS类
footer{background-color:#C0C0C0;position:fixed;height:100px;width: 100%;top:100%;margin-top: -100px;}
答案 0 :(得分:0)
@ vaibhav.pnd请发布完整的asp:datagrid代码。 同时,仅对于寻呼机,请使用以下属性和代码。
<asp:datagrid ID="grdPageTemplate" runat="server" Width="100%" ShowFooter="False" AllowPaging="True" PageSize="10">
<!-- Code to make the columns of my grid-->
<PagerSettings Position="Bottom" Mode="NumericFirstLast" />
</asp:datagrid>