<asp:DataPager ID="DataPager1" runat="server" PagedControlID="LV" PageSize="">
<Fields>
<asp:NextPreviousPagerField ShowFirstPageButton="True" ShowNextPageButton="False"
ShowPreviousPageButton="False" FirstPageText="&lt;&lt;"
LastPageText="尾页" />
<asp:NumericPagerField ButtonCount="" CurrentPageLabelCssClass="current" />
<asp:NextPreviousPagerField ShowLastPageButton="True" ShowNextPageButton="False"
ShowPreviousPageButton="False" FirstPageText="首页"
LastPageText="&gt;&gt;" />
</Fields>
</asp:DataPager>

PagedControlID="LV"  对应的是  asp:ListView ID="LV"

current.css

/*页面分页样式*/

span#ContentPlaceHolder1_DataPager1 a.aspNetDisabled
{
border: 1px solid #382a4a;
padding: 2px 5px;
margin: 2px;
color: #4c3766;
text-decoration: none;
} span#ContentPlaceHolder1_DataPager2 a.aspNetDisabled
{
border: 1px solid #382a4a;
padding: 2px 5px;
margin: 2px;
color: #4c3766;
text-decoration: none;
} span#ContentPlaceHolder1_DataPager3 a.aspNetDisabled
{
border: 1px solid #382a4a;
padding: 2px 5px;
margin: 2px;
color: #4c3766;
text-decoration: none;
} #ContentPlaceHolder1_DataPager1 a
{
border: 1px solid #563f83;
padding: 2px 5px;
margin: 2px;
color: #9966FF;
text-decoration: none;
} #ContentPlaceHolder1_DataPager2 a
{
border: 1px solid #563f83;
padding: 2px 5px;
margin: 2px;
color: #9966FF;
text-decoration: none;
} #ContentPlaceHolder1_DataPager3 a
{
border: 1px solid #563f83;
padding: 2px 5px;
margin: 2px;
color: #9966FF;
text-decoration: none;
} #ContentPlaceHolder1_DataPager1 a:hover
{
border: 1px solid #9966FF;
} #ContentPlaceHolder1_DataPager2 a:hover
{
border: 1px solid #9966FF;
} #ContentPlaceHolder1_DataPager3 a:hover
{
border: 1px solid #9966FF;
} .current
{
border: 1px solid #9933FF;
padding: 2px 5px 2px 5px;
font-weight: bold;
color: #fff;
background-color: #CC66FF;
}

DataPager 分页样式(css)的更多相关文章

  1. thinkphp分页样式css代码

    <style type="text/css"> .Pagination a:hover,.current{background-color: #f54281;borde ...

  2. VS中的DataPager分页

    微软的DataPager分页功能很强大,不要设置数据库存储过程,只要添加个DataPager控件,关联下要分页的控件,简单设置就可以有不错的分页效果.当然要有更理想的效果还是要前台和后台处理下. wi ...

  3. php分页类代码带分页样式效果(转)

    php分页类代码,有漂亮的分页样式风格 时间:2016-03-16 09:16:03来源:网络 导读:不错的php分页类代码,将类文件与分页样式嵌入,实现php查询结果的精美分页,对研究php分页原理 ...

  4. 打造简单实用的Thinkphp分页样式(Bootstrap版本)

    先吐槽一下ThinkPHP3.1版的分页样式,虽然看起来也很简单大方,但是所有的页码全是使用简单的数字,之间的空隙比较小,不大容易点,还有那个“前5页”和“后5页”显得有点多余,因为点击当前显示第一页 ...

  5. 帝国cms 列表页分页样式修改美化【2】

    上一篇(帝国cms 列表页分页样式修改美化[1])中我们已经对分页说了一个大概,下面我们就自己动手弄一个分页把: 第一步:进入帝国cms后台,点击系统设置->系统参数设置->信息设置:里面 ...

  6. 帝国cms 列表页分页样式修改美化【1】

    [1]自己修改帝国cms默认的分页样式(css),这样做的好处是你不用去改动帝国的核心文件,方便以后升级. [2]自己动手去修改帝国的分页(php+css),帝国的分页在e>class>下 ...

  7. 修改DeDe标签Pagelist分页样式

    我们在用dede仿站的时候,调用文章列表页的分页时,我们会用到: {dede:pagelist listitem=”info,index,end,pre,next,pageno” listsize=” ...

  8. 帝国cms分页样式修改文件-注意事项

    帝国cms分页样式主要有:内容页分页样式.列表页分页样式以及默认搜索模板使用的搜索样式等几种. 要改这些样式其实也很简单,在网站目录中找到相应的.css文件修改empages属性就行了,但是这样比较麻 ...

  9. bootstrap导航条+模态对话框+分页样式

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

随机推荐

  1. HandlerThread源码分析

    其实原本HandlerThread的分析不应该单独开一篇博客的,应该在讲消息机制的那一片中一起分析. 但当时忘记了,而且今天第一次用MarkDown写博客,有点上瘾,就再来一篇,权当滥竽充数过过手瘾. ...

  2. POJ 3041 Asteroids 二分图匹配

    以行列为点建图,每个点(x,y) 对应一条边连接x,y.二分图的最小点覆盖=最大匹配 //#pragma comment(linker, "/STACK:1024000000,1024000 ...

  3. C#发送邮件

    以下代码已用 .yeah .qq 以及本人公司邮箱测试通过,可多发,可挂附件 本次测试邮件发送类,是用的winform 页面如下 窗口的后台代码如下: using System; using Syst ...

  4. 使用winpcap多线程抓包,以及简单的分析数据包

    刚开始使用winpcap数据包的时候,我在抓包的时候使用了 pcap_loop(adhandle, 0, packet_handler, NULL); 这个回调函数进行抓包.同时在回调函数中分析IP地 ...

  5. cx_freeze安装使用

    在windows下 安装比较方便又专门的安装包 然后cmd 进入 c:\python33\Scripts >cxfreeze E:\main.py --target-dir E:\ 前面是源文件 ...

  6. 手势估计- Hand Pose Estimation

    http://blog.csdn.net/myarrow/article/details/51933651 1. 目前进展 1.1 相关资料      1)HANDS CVPR 2016      2 ...

  7. Python的包管理工具Pip (zz )

    Python的包管理工具Pip 接触了Ruby,发现它有个包管理工具RubyGem很好用,并且有很完备的文档系统http://rdoc.info 发现Python下也有同样的工具,包括easy_ins ...

  8. MySQL 创建表

     MySQL中create table语句的基本语法是: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,. ...

  9. 收缩数据库 DBCC SHRINKFILE

    /* from: http://www.cnblogs.com/blackcore/archive/2010/12/27/1917911.html */ 数据库中的每个文件都可以通过删除未使用的页的方 ...

  10. PHP对象转数组||PHP数组转对象

    function arrayToObject($e){     if( gettype($e)!='array' ) return;     foreach($e as $k=>$v){     ...