改写别人的分页控件代码(有加密)

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using PTFair.WebSites.Common;

public partial class Controls_Pager : System.Web.UI.UserControl
{
    private string _UrlFormat;
    private string _UrlPar;
    private int _PageSize;
    private int _RecordCount;
    private int _PageCount = 5;
    private int flag = 0;
    private int _SetPageIndex = 0;
    Security mySecurity;

    /// <summary>
    /// 连接页面
    /// </summary>
    public string UrlFormat
    {
        get
        {
            return _UrlFormat;
        }
        set
        {
            _UrlFormat = value;
        }
    }

    /// <summary>
    /// 链接参数
    /// </summary>
    public string UrlPar
    {
        get
        {
            return _UrlPar;
        }
        set
        {
            _UrlPar = value;
        }
    }

    /// <summary>
    /// 每页显示记录数

    /// </summary>
    public int PageSize
    {
        get
        {
            return _PageSize;
        }
        set
        {
            _PageSize = value;
        }
    }

    /// <summary>
    /// 当前页码
    /// </summary>
    public int PageIndex
    {
        get
        {
            string Pageindex;
            if (SetPageIndex == 1)
                Pageindex = "1";
            else
            {
                if (Request["list"] != null)
                {
                    mySecurity = new Security();
                    string pars = mySecurity.DecryptQueryString(Request["list"]);
                    string[] tmplist = pars.Split(',');
                    Pageindex = tmplist[0];// HttpContext.Current.Request.QueryString["list"];
                }
                else
                    Pageindex = "1";
            }
            if (Pageindex != null)
            {
                return int.Parse(Pageindex);
            }
            return 1;
        }
    }

    /// <summary>
    /// 初始话当前页为第一页

    /// </summary>
    public int SetPageIndex
    {
        get
        {
            return _SetPageIndex;
        }
        set
        {
            _SetPageIndex = value;
        }
    }

    /// <summary>
    /// 总记录数
    /// </summary>
    public int RecordCount
    {
        get
        {
            return _RecordCount;
        }
        set
        {
            _RecordCount = value;
        }
    }

    /// <summary>
    /// 两边显示个数
    /// </summary>
    public int PageCount
    {
        get
        {
            return _PageCount;
        }
        set
        {
            _PageCount = value;
        }
    }

 

    protected override void Render(HtmlTextWriter writer)
    {
        if (PageSize == 0)
            PageSize = int.Parse(ConfigurationSettings.AppSettings["PageSize"]);
        PageCount = System.Convert.ToInt32(Math.Ceiling((Decimal)RecordCount / PageSize));//获取页数
        if (RecordCount == 0)
            return;
        int SumPage = (RecordCount + PageSize - 1) / PageSize;//页数?

        flag = (PageIndex - 1) / 10;
        StringBuilder sb = new StringBuilder(string.Format("页次:{0}/{1}&nbsp;&nbsp;每页:{2}&nbsp;&nbsp;共计:{3}条&nbsp;&nbsp;", PageIndex, SumPage, PageSize, RecordCount));
        mySecurity = new Security();
        if (PageIndex > 1)
        {
            sb.Append("<a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, 1)) + "\">首页</a> ");
            sb.Append(" <a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, PageIndex - 1)) + "\">上一页</a> ");
        }
        if (this.PageIndex > 10)
        {
            sb.Append("<a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, 10 * flag)) + "\"><<</a> ");
        }
        int start, end;
        start = 10 * flag + 1;
        if (10 * (flag + 1) > PageCount)
        {
            end = PageCount;
        }
        else
        {
            end = 10 * (flag + 1);
        }

        for (int i = start; i <= end; i++)
        {
            if (i == PageIndex)
            {
                sb.Append(" <strong>" + PageIndex.ToString() + "</strong> ");
            }
            else
            {
                sb.Append("<a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, i)) + "\">" + i + "</a> ");
            }
            sb.Append("&nbsp;");
        }
        if (PageCount > 10 * (flag + 1))
        {
            sb.Append("<a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, 10 * (flag + 1) + 1)) + "\">>></a> ");
        }
        if (PageIndex < SumPage)
        {
            sb.Append(" <a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, PageIndex + 1)) + "\">下一页</a> ");
            sb.Append(" <a href=\"" + UrlFormat + mySecurity.EncryptQueryString(string.Format(UrlPar, SumPage)) + "\">尾页</a>");
        }
        writer.Write(sb.ToString());
    }

    protected void Page_Load(object sender, EventArgs e)
    {

    }
}

转载于:https://www.cnblogs.com/feyin/archive/2008/08/22/1273924.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值