使用 asp:DataPager 控件,如何设置数字溢出按钮的 CSS 类?
我使用的是 asp:DataPager 控件,并且有 [first]、[prev]、[1]、[2]、[3]、[4]、[5]、[6]、[。 ..]、[下一个]、[最后一个]按钮。除了 [...] 按钮之外,我可以为所有这些设置一个 css 类。我找不到可以让我这样做的房产。
如何设置 [...] 的 CSS 类?
到目前为止我的代码是:
<asp:DataPager ID="dpNav" runat="server">
<Fields>
<asp:NextPreviousPagerField
ButtonType="Button"
ShowFirstPageButton="true" FirstPageText="<<"
ShowPreviousPageButton="true" PreviousPageText="<"
ShowNextPageButton="false"
ShowLastPageButton="false"
ButtonCssClass="nav" />
<asp:NumericPagerField
ButtonType="Button"
ButtonCount="6"
CurrentPageLabelCssClass="nav-current"
NumericButtonCssClass="nav"
RenderNonBreakingSpacesBetweenControls="true" />
<asp:NextPreviousPagerField
ButtonType="Button"
ShowFirstPageButton="false"
ShowPreviousPageButton="false"
ShowNextPageButton="true" NextPageText=">"
ShowLastPageButton="true" LastPageText=">>"
ButtonCssClass="nav" />
</Fields>
</asp:DataPager>
I'm using the asp:DataPager control, and I have [first], [prev], [1], [2], [3], [4], [5], [6], [...], [next], [last] buttons. I can set a css class for all of these apart from the [...] button. I can't find a property that will let me do this.
How can I set the CSS class for [...]?
My code so far is:
<asp:DataPager ID="dpNav" runat="server">
<Fields>
<asp:NextPreviousPagerField
ButtonType="Button"
ShowFirstPageButton="true" FirstPageText="<<"
ShowPreviousPageButton="true" PreviousPageText="<"
ShowNextPageButton="false"
ShowLastPageButton="false"
ButtonCssClass="nav" />
<asp:NumericPagerField
ButtonType="Button"
ButtonCount="6"
CurrentPageLabelCssClass="nav-current"
NumericButtonCssClass="nav"
RenderNonBreakingSpacesBetweenControls="true" />
<asp:NextPreviousPagerField
ButtonType="Button"
ShowFirstPageButton="false"
ShowPreviousPageButton="false"
ShowNextPageButton="true" NextPageText=">"
ShowLastPageButton="true" LastPageText=">>"
ButtonCssClass="nav" />
</Fields>
</asp:DataPager>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于没有特定的类,我建议您在按钮文本中使用 html 标签,例如
希望这个想法会对您有所帮助
Since there is no specific class for it, I suggest you to use html tags inside the button text such as
in
<asp:NumericPagerField />
Hope this idea will help you