ASP.NET 3.5 自定义 DataPager

发布于 2024-09-01 07:32:05 字数 363 浏览 6 评论 0原文

我目前手动完成分页,并使用此代码来显示它

<div class="pages_numbers">
 <ul>
   <li><a href="#">1</a></li>
   <li><a href="#">2</a></li>
   <li><a href="#">&raquo; </a></li>
 </ul>
</div>

我想使用 DataPager 控件为我进行分页,我已经使分页工作得很好,但我无法让 CSS 样式正确粘贴和显示。

I currently have paging done manually and I use this code to display it

<div class="pages_numbers">
 <ul>
   <li><a href="#">1</a></li>
   <li><a href="#">2</a></li>
   <li><a href="#">» </a></li>
 </ul>
</div>

I want to use the DataPager control to do the paging for me, I've gotten the paging to work great, but I cant get the CSS Styles to stick and display correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

染墨丶若流云 2024-09-08 07:32:05

将其添加到用于 seo 的数据分页

QueryStringField="id"

然后将 CSS 类添加到元素并更改了我的 CSS

<Fields>
<asp:NextPreviousPagerField FirstPageText="<<" ShowFirstPageButton="True" ShowNextPageButton="False" ShowPreviousPageButton="False" ButtonCssClass="PageItem" />
<asp:NumericPagerField CurrentPageLabelCssClass="PageItem" NumericButtonCssClass="PageItem"  NextPreviousButtonCssClass="PageItem" />
<asp:NextPreviousPagerField LastPageText=">>" ShowLastPageButton="True" ShowNextPageButton="False" ShowPreviousPageButton="False" ButtonCssClass="PageItem" />
</Fields>

Added this to the datapager for seo

QueryStringField="id"

Then added CSS Classes to the elements and changed my CSS

<Fields>
<asp:NextPreviousPagerField FirstPageText="<<" ShowFirstPageButton="True" ShowNextPageButton="False" ShowPreviousPageButton="False" ButtonCssClass="PageItem" />
<asp:NumericPagerField CurrentPageLabelCssClass="PageItem" NumericButtonCssClass="PageItem"  NextPreviousButtonCssClass="PageItem" />
<asp:NextPreviousPagerField LastPageText=">>" ShowLastPageButton="True" ShowNextPageButton="False" ShowPreviousPageButton="False" ButtonCssClass="PageItem" />
</Fields>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文