net文章分页代码

   net文章分页代码,分页功能在任一个WEB开发项目中都会用到,所以今天我们就来看看net分页代码的实现方法
 private PagedDataSource pds()
    {
        string connstring = ConfigurationManager.ConnectionStrings["Pubs"].ConnectionString;
        //声明一个字符串,后面随时可以用
        SqlConnection con = new SqlConnection(connstring);
        //初始化连接
        SqlDataAdapter sda = new SqlDataAdapter("select * from authors", con);
        //初始化一个SqlDataAdapter,并给出查询语句
        DataSet ds = new DataSet();
        //初始化一个DataSet
        sda.Fill(ds, "name");
        //将上面查询到的数据填充到name表中
        SqlDataAdapter sda2 = new SqlDataAdapter("select * from titleauthor", con);
        //同上
        sda2.Fill(ds, "title");
        //同上
        ds.Relations.Add("myrela", ds.Tables["name"].Columns["au_id"], ds.Tables["title"].Columns["au_id"]);
        //为上面建立的两个表创建一个关系,指明父列和子列的名称并为他们的关系命名,前面将会用到

        PagedDataSource pds = new PagedDataSource();
        //初始化一个PagedDataSource,允许控件分页
        pds.DataSource = ds.Tables["name"].DefaultView;
        //将上面的ds转换成标准数据视图
        pds.AllowPaging = true;
        //允许分页
        pds.PageSize = 5;
        //每页大小为5 
        pds.CurrentPageIndex = Convert.ToInt32(Request.QueryString["page"]);
        //设置当前页
        return pds;
        //将处理完毕的pds对象发出去
    }
    protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        if (e.Item.ItemType == ListItemType.Footer)
        {//判断当前项是页脚模板
            int n = pds().PageCount;//将分页总数赋给变量n
            int i = pds().CurrentPageIndex;//将当前分页码赋给i

            Label lblpc = (Label)e.Item.FindControl("lblpc");
            lblpc.Text = n.ToString();
            //找到lblpc这个Label,将总页码赋给他
            Label lblp = (Label)e.Item.FindControl("lblp");           
            lblp.Text = Convert.ToString(pds().CurrentPageIndex + 1);           
            //找到lblp这个Label,将当前页码赋给他,但是注意,因为页码从0开始,这里要直观的话就得加1
            HyperLink hlfir = (HyperLink)e.Item.FindControl("hlfir");
            hlfir.NavigateUrl = "?page=0";
            HyperLink hlla = (HyperLink)e.Item.FindControl("hlla");
            hlla.NavigateUrl = "?page=" + Convert.ToInt32(n - 1);
            //找到表示最前页和末页的Label,为他们的NavigateUrl属性赋为第0页和最大页码减1
            HyperLink hlp = (HyperLink)e.Item.FindControl("hlp");
            HyperLink hln = (HyperLink)e.Item.FindControl("hln");
            //找到表示上页和下页这两个控件
            if (i <= 0)
            {//如果当前页已经是第0页
                hlp.Enabled = false;
                hlfir.Enabled = false;
                hln.Enabled = true;
            }
            else
            {
                hlp.NavigateUrl = "?page=" + Convert.ToInt32(i - 1);
            }
            if (i > n-2 )
            {//如果当前项已经是最末页
                hln.Enabled = false;
                hlla.Enabled = false;
                hlp.Enabled = true;
            }
            else
            {
                hln.NavigateUrl = "?page=" + Convert.ToInt32(i + 1);
            }
        }
    }

时间: 2024-09-30 12:52:47

net文章分页代码的相关文章

jQuery+FCK编辑器+PHP实现文章分页代码

在fck中插入分页符如下图 文章分页代码-jquery 长文章分页"> 分页代码   function pagebreak($content) { $content = $content; $pattern = "/<div style="page-break-after: always"><span style="display: none"> </span></div>/"; $

asp长文章分页代码

上段时间我写了一个php的长文章分页代码用到的explode来进行分割实现的,今天我们就来讲讲asp文章分页代码以及长文章分页和asp长文章分页方法.  Function c2u(myText) Dim i c2u = "" For i = 1 to Len(myText) c2u = c2u & "&#x" & Hex(AscW(Mid(myText, i, 1))) & ";" Next End Functio

PHP 文本文章分页代码 按标记或长度(不涉及数据库)_php实例

实例代码: 复制代码 代码如下: <?php /** * ********************************************************** * Read Me * 文章分页 * * 分页方式,可以按字数分页,按换行分页,按特殊标记分页等 * 其实实现思路是一样的,只是将其按一定规律放入一个数组 * 然后根据 url 传入的参数取得某个片段即可 * 大家完全可以写一个功能强大的函数保存起来以备不时之需 * * 题外话:很多编辑器都有插入分页按钮,利用插入的代码可

php 新闻文章分页代码实例教程

unction explode_content($content, $length) {  02 $i = 0;  03 $k = 1;  04 $j = 0;  05 $wn = 0;  06 $s = '';  07 $e = 1;  08 $yh = 0;  09 while ($k) {  10 $d = $content[$i];  11 if ($d !== '') {  12 if (ord($d) > 127) {  13 $j++;  14 $num = 2;  15 $i++

ASP实例代码:搞个长文章分页代码

以下为引用的内容: <%Class aspxsky_page Private Sub class_initialize End Sub  Public Function Alert(message,gourl)    message = replace(message,"'","\'")    If gourl="-1" then        Response.Write ("<script language=javasc

asp文章分页代码

'**************************************************** '函数名:StrLen '作  用:取得字符串长度(汉字为2) '参  数:str ----字符串内容 '返回值:字符串长度 '**************************************************** Function StrLen(Str)     Set rep = New regexp     rep.Global = True     rep.Ign

关于长文章分页的方法

问题描述 谁有插入分页符的文章分页代码 解决方案 解决方案二:string[]PageContent=Regex.Split(BookContent_Content,"~page~",RegexOptions.IgnoreCase);ltlContent.Text="<p>"+PageContent[page-1].ToString()+"</p>";解决方案三:有没有比较全点的代码解决方案四:这个和普通分页没什么区别的吧

php fck文章分页

 php fck文章分页 fckeditor文章分页代码 <?php       $page =isset($_GET['page'])?$_GET['page']:1;//这里了得当前文章的分页编号如果没有就为1  $split ='<div style="page-break-after: always"><span style="display: none"> </span></div>'; //这里是fc

PHP实现长文章分页实例代码(附源码)_php实例

当文章内容比较长,为了更好的满足用户体验度,我们将文章内容分页显示处理,而一般分页处理是在后台发布文章的时候就将提交的内容生成多个分页后的静态文件.通过本文结合实例采用php动态将长文章内容进行分页处理. 查看效果演示     源码下载 如何分页 手动分页:一般在编辑内容时加入特殊分页标记,如{pages},提交后,PHP程序会根据分页符处理分页,生成不同的静态页面.这种分页方法分页准确,但是需要人工手动添加分页符,工作量大. 自动分页:PHP程序会根据设置好的分页符将内容进行分页,然后生成不同