仅供参考1.分页方案一:(利用Not In和SELECT TOP分页)
语句形式:   
SELECT TOP 10 *
FROM TestTable
WHERE (ID NOT IN
          (SELECT TOP 20 id
         FROM TestTable
         ORDER BY id))
ORDER BY ID
SELECT TOP 页大小 *
FROM TestTable
WHERE (ID NOT IN
          (SELECT TOP 页大小*页数 id
         FROM 表
         ORDER BY id))
ORDER BY ID
   2.分页方案二:(利用ID大于多少和SELECT TOP分页)
语句形式:  
SELECT TOP 10 *
FROM TestTable
WHERE (ID >
          (SELECT MAX(id)
         FROM (SELECT TOP 20 id
                 FROM TestTable
                 ORDER BY id) AS T))
ORDER BY ID
SELECT TOP 页大小 *
FROM TestTable
WHERE (ID >
          (SELECT MAX(id)
         FROM (SELECT TOP 页大小*页数 id
                 FROM 表
                 ORDER BY id) AS T))
ORDER BY ID
本文转摘自『IT学习者』http://www.itlearner.com/article/2007/3740.shtml

解决方案 »

  1.   

    以下代码仅供参考:int pageSize;//每页显示多少条记录
    int pageIndex;//当前页数
    int rows = select count(*) rom khb; //数据总行数 
    第一页:
      select  top  10  ID,Name  from  khb order  by  ID  desc  上一页:
      "select  top  10  ID,Name  from  khb  where  ID  not  in  (select  top"+((pageIndex-2)*pageSize)+"ID,Name  from  khb  order  by  ID  desc)  order  by  ID  desc"下一页:
        "select  top  10  ID,Name  from  khb  where  ID  not  in  (select  top "+(pageIndex*pageSize)+ "ID,Name  from  khb  order  by  ID  desc)  order  by  ID  desc"最后一页:
        select  top  10  ID,Name  from  khb order  by  ID  asc 
      

  2.   

    你点下一页,就把上一页的页数传过去,比如:page.aspx?page=2;
    页面中把page=2这个值取到,然后就调用分页方法。
    分页算法上面写好了。
      

  3.   


    如果最後一頁 少於10 那怎麼辦。用DESC 永遠最後一頁都有10條數據。?????
      

  4.   

     最后一页
    "select  top"+  rows/pageSize + "ID,Name  from  khb order  by  ID  asc "
      

  5.   

    "select  top"+  rows/pageSize + "ID,Name  from  khb order  by  ID  asc "
    改为
    "select  top"+  rows%pageSize + "ID,Name  from  khb order  by  ID  asc "
      

  6.   

    if(rows%pageSize == 0)
    {
    "select  top"+ pageSize + "ID,Name  from  khb order  by  ID  asc "
    }
    else
    {
    "select  top"+  rows%pageSize + "ID,Name  from  khb order  by  ID  asc "
      

  7.   

    直接无语   1楼的SQL都写好了  你还要别人给你写程序  你自己定义一个变量用来存当前第几页 然后在每个按钮事件里去 执行SQL语句不就行了。   用以个绑定的方法    然后每个翻页的按钮事件只要带SQL语句做为参数去访问绑定方法就OK了  
      

  8.   

    我在网上找的,不知那个高手写的,我测试了,分页速度很快。
    特别贡献出来,希望对你用帮助。主要运用Select Top...Not In...语句,相比PagedDataSource分页,效率上有本质的区别,对比过了,100w条数据,PagedDataSource分页,超时了,分不出来,而用此方法,分页速度不超过0.5秒。首先创建一张表(要求ID自动编号):
    create table redheadedfile(
    id int identity(1,1),
    filenames nvarchar(20),
    senduser nvarchar(20),
    primary key(id)
    )
    然后我们写入50万条记录:
    declare @i int
    set @i=1
    while @i<=500000
    begin
    insert into redheadedfile(filenames,senduser) values('我的分页算法','陆俊铭')
    set @i=@i 1
    end
    GO
     
    Pagination.aspx
    <%@ Page language="c#" Codebehind="Pagination.aspx.cs" AutoEventWireup="false" Inherits="Test.Pagination" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    <HTML>
     <HEAD>
      <title>Pagination</title>
      <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
      <meta content="C#" name="CODE_LANGUAGE">
      <meta content="javascript" name="vs_defaultClientScript">
      <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
     </HEAD>
     <body MS_POSITIONING="GridLayout">
      <form id="Form1" method="post" runat="server">
       <asp:datalist id="datalist1" AlternatingItemStyle-BackColor="#f3f3f3" Width="100%" CellSpacing="0"
        CellPadding="0" Runat="server">
        <ItemTemplate>
         <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
           <td width="30%" align="center"><%#DataBinder.Eval(Container.DataItem,"filenames")%></td>
           <td width="30%" align="center"><%#DataBinder.Eval(Container.DataItem,"senduser")%></td>
           <td width="30%" align="center"><%#DataBinder.Eval(Container.DataItem,"id")%></td>
          </tr>
         </table>
        </ItemTemplate>
       </asp:datalist>
       <div align="center">
        共<asp:label id="LPageCount" Runat="server" ForeColor="#ff0000"></asp:label>页/共
        <asp:label id="LRecordCount" Runat="server" ForeColor="#ff0000"></asp:label>记录
        <asp:linkbutton id="Fistpage" Runat="server" CommandName="0">首页</asp:linkbutton>&nbsp;&nbsp;&nbsp;&nbsp;
        <asp:linkbutton id="Prevpage" Runat="server" CommandName="prev"> 上一页</asp:linkbutton>&nbsp;&nbsp;&nbsp;&nbsp;
        <asp:linkbutton id="Nextpage" Runat="server" CommandName="next">下一页</asp:linkbutton>&nbsp;&nbsp;&nbsp;&nbsp;
        <asp:linkbutton id="Lastpage" Runat="server" CommandName="last">尾页</asp:linkbutton>&nbsp;&nbsp;&nbsp;&nbsp; 
        当前第<asp:label id="LCurrentPage" Runat="server" ForeColor="#ff0000"></asp:label>页&nbsp;&nbsp;&nbsp;&nbsp; 
        跳页<asp:TextBox ID="gotoPage" Runat="server" Width="82px" MaxLength="5" AutoPostBack="True"></asp:TextBox>
       </div>
      </form>
     </body>
    </HTML>
    cs文件:
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;
    using System.Data.SqlClient;namespace Test
    {
     /// <summary>
     /// WebForm8 的摘要说明。
     /// </summary>
     public class Pagination : System.Web.UI.Page
     {
      protected System.Web.UI.WebControls.DataList datalist1;
      protected System.Web.UI.WebControls.Label LPageCount;
      protected System.Web.UI.WebControls.Label LRecordCount;
      protected System.Web.UI.WebControls.LinkButton Fistpage;
      protected System.Web.UI.WebControls.LinkButton Prevpage;
      protected System.Web.UI.WebControls.LinkButton Nextpage;
      protected System.Web.UI.WebControls.LinkButton Lastpage;
      protected System.Web.UI.WebControls.Label LCurrentPage;
      protected System.Web.UI.WebControls.TextBox gotoPage;
      public int PageSize=30;//定义每页显示记录 
      int PageCount,RecCount,CurrentPage,Pages,JumpPage;//定义几个保存分页参数变量  private void Page_Load(object sender, System.EventArgs e)
      {
       if(!IsPostBack)
       { 
        RecCount = Calc();//通过Calc()函数获取总记录数 
        PageCount = RecCount/PageSize + OverPage();//计算总页数(加上OverPage()函数防止有余数造成显示 数据不完整)
        ViewState["PageCounts"] = RecCount/PageSize - ModPage();//保存总页参数到ViewState(减去ModPage()函数防止SQL语句执行时溢出查询范围,可以用存储过程分页算法来理解这句) 
        ViewState["PageIndex"] = 0;//保存一个为0的页面索引值到ViewState 
        ViewState["JumpPages"] = PageCount;//保存PageCount到ViewState,跳页时判断用户输入数是否超出页 码范围
        
        //显示LPageCount、LRecordCount的状态 
        LPageCount.Text = PageCount.ToString(); 
        LRecordCount.Text = RecCount.ToString(); 
        
        //判断跳页文本框失效 
        if(RecCount <= PageSize) 
         gotoPage.Enabled = false;     TDataBind();//调用数据绑定函数TDataBind()进行数据绑定运算 
       } 
      } 
      
      //计算余页 
      public int OverPage() 
      { 
       int pages = 0; 
       if(RecCount%PageSize != 0) 
        pages = 1; 
       else 
        pages = 0;
       return pages; 
      }
      
      //计算余页,防止SQL语句执行时溢出查询范围        
      public int ModPage() 
      { 
       int pages = 0; 
       if(RecCount%PageSize == 0 && RecCount != 0) 
        pages = 1; 
       else 
        pages = 0; 
       return pages; 
      } 
    /* *计算总记录的静态函数 *本人在这里使用静态函数的理由是:如果引用的是静态数据或静态函数,连接器会优化生成代码,去掉动态重定位项(对 海量数据表分页效果更明显)。 *希望大家给予意见、如有不正确的地方望指正。 */ 
      public static int Calc() 
      { 
       int RecordCount = 0; 
       SqlCommand MyCmd = new SqlCommand("select count(*) as co from redheadedfile",MyCon()); 
       SqlDataReader dr = MyCmd.ExecuteReader(); 
       if(dr.Read()) RecordCount = Int32.Parse(dr["co"].ToString());
       MyCmd.Connection.Close(); 
       return RecordCount; 
      } 
      
      //数据库连接语句(从Web.Config中获取) 
      public static SqlConnection MyCon() 
      { 
       SqlConnection MyConnection = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]); 
       MyConnection.Open(); 
       return MyConnection; 
      } 
      
      //对四个按钮(首页、上一页、下一页、尾页)返回的CommandName值进行操作 
      private void Page_OnClick(object sender, CommandEventArgs e) 
      { 
       CurrentPage = (int)ViewState["PageIndex"];//从ViewState中读取页码值保存到CurrentPage变量中进行参数运算 
       Pages = (int)ViewState["PageCounts"];//从ViewState中读取总页参数运算 
       string cmd = e.CommandName; 
       switch(cmd)//筛选CommandName 
       { 
        case "next": 
         CurrentPage++; 
         break; 
        case "prev":
         CurrentPage--; 
         break; 
        case "last": 
         CurrentPage = Pages; 
         break; 
        default: 
         CurrentPage = 0;
         break; 
       } 
       ViewState["PageIndex"] = CurrentPage;//将运算后的CurrentPage变量再次保存至ViewState 
       TDataBind();//调用数据绑定函数TDataBind() 
      } 
      private void TDataBind() 
      { 
       CurrentPage = (int)ViewState["PageIndex"];//从ViewState中读取页码值保存到CurrentPage变量中进行按钮失 效运算 
       Pages = (int)ViewState["PageCounts"];//从ViewState中读取总页参数进行按钮失效运算
       
       //判断四个按钮(首页、上一页、下一页、尾页)状态
       if (CurrentPage + 1 > 1) 
       { 
        Fistpage.Enabled = true;
        Prevpage.Enabled = true; 
       } 
       else 
       { 
        Fistpage.Enabled = false; 
        Prevpage.Enabled = false; 
       } 
       if (CurrentPage == Pages) 
       { 
        Nextpage.Enabled = false; 
        Lastpage.Enabled = false; 
       } 
       else 
       { 
        Nextpage.Enabled = true; 
        Lastpage.Enabled = true; 
       } 
       
       //数据绑定到DataList控件
       DataSet ds = new DataSet(); //核心SQL语句,进行查询运算(决定了分页的效率:)) 
       SqlDataAdapter MyAdapter = new SqlDataAdapter("Select Top "+PageSize+" * from redheadedfile where id not in(select top "+PageSize*CurrentPage+" id from redheadedfile order by id asc) order by id asc",MyCon()); 
       MyAdapter.Fill(ds,"news"); 
       datalist1.DataSource = ds.Tables["news"].DefaultView; 
       datalist1.DataBind(); 
       
       //显示Label控件LCurrentPaget和文本框控件gotoPage状态 
       LCurrentPage.Text = (CurrentPage+1).ToString(); 
       gotoPage.Text = (CurrentPage+1).ToString(); 
       //释放SqlDataAdapter 
       MyAdapter.Dispose(); 
      } 
      #region Web 窗体设计器生成的代码 
      override protected void OnInit(EventArgs e) 
      { 
       // 
       // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。 
       // 
       InitializeComponent(); base.OnInit(e); 
      } 
      /// <summary> 
      /// /// 设计器支持所需的方法 - 不要使用代码编辑器修改 
      /// /// 此方法的内容。 
      /// </summary> 
      private void InitializeComponent() 
      { 
       this.Fistpage.Command += new System.Web.UI.WebControls.CommandEventHandler(this.Page_OnClick); 
       this.Prevpage.Command += new System.Web.UI.WebControls.CommandEventHandler(this.Page_OnClick); 
       this.Nextpage.Command += new System.Web.UI.WebControls.CommandEventHandler(this.Page_OnClick); 
       this.Lastpage.Command += new System.Web.UI.WebControls.CommandEventHandler(this.Page_OnClick); 
       this.gotoPage.TextChanged += new System.EventHandler(this.gotoPage_TextChanged); 
       this.Load += new System.EventHandler(this.Page_Load); 
      } 
      #endregion   //跳页代码 
      private void gotoPage_TextChanged(object sender, System.EventArgs e) 
      { 
       try 
       { 
        JumpPage = (int)ViewState["JumpPages"];//从ViewState中读取可用页数值保存到JumpPage变量中     //判断用户输入值是否超过可用页数范围值 
        if(Int32.Parse(gotoPage.Text) > JumpPage || Int32.Parse(gotoPage.Text) <= 0) 
         Response.Write("<script>alert('页码范围越界!');location.href='WebForm8.aspx'</script>"); 
        else 
        { 
         int InputPage = Int32.Parse(gotoPage.Text.ToString()) - 1;//转换用户输入值保存在int型 InputPage变量中 
         ViewState["PageIndex"] = InputPage;//写入InputPage值到ViewState["PageIndex"]中 
         TDataBind();//调用数据绑定函数TDataBind()再次进行数据绑定运算 
        }    }    
       catch(Exception exp) //捕获由用户输入不正确数据类型时造成的异常 
       { 
        Response.Write("<script>alert('"+exp.Message+"');location.href='WebForm8.aspx'</script>"); 
       }
      } 
     }

      

  9.   

    程序,
    首先是sql语句,
    其次是调用的代码。