如何在 ASP.NET GridView Pager 中设置活动页码的样式?

Posted

技术标签:

【中文标题】如何在 ASP.NET GridView Pager 中设置活动页码的样式?【英文标题】:How to set style of active page number in ASP.NET GridView Pager? 【发布时间】:2010-09-24 07:24:40 【问题描述】:

所以我有 GridView 控件,我想通过 css 制作自定义 PagerStyle。

问题是我不知道如何更改表示活动页面的数字的样式(颜色)。如果我更改颜色属性,它会更改所有页码的颜色。我想分别更改活动号码和链接号码的颜色。

如何做到这一点?

【问题讨论】:

【参考方案1】:

样式应该是这样的:

.Pager a  color: #000000; text-decoration: none; 
.Pager hover  color: #AAFF00; text-decoration: none;  
.Pager  color: #885454; text-decoration: none; background-color: #FFF7E7;

【讨论】:

【参考方案2】:

我想你可能会追求:

myElement:active color: f00;

但我不确定..

【讨论】:

以上是关于如何在 ASP.NET GridView Pager 中设置活动页码的样式?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 c# ASP.NET 中使用 GridView_RowCommand 事件从 GridView 获取图像

asp.net如何输出数据?

如何在编辑模式 ASP .Net 中将日期选择器放在 Gridview 中

如何使用 asp.net 将 gridview 图像和数据导出到 PDF 或使用 asp.net 将 gridview 数据导出到 PDF

如何使用 asp.net 在 gridview 中突出显示搜索结果?

如何以编程方式在 ASP.NET 4.0 GridView 上启用分页和排序?