IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁(yè)網(wǎng)絡(luò)編程.Net編程 → ASP.NET存儲(chǔ)過(guò)程自定義分頁(yè)詳解

ASP.NET存儲(chǔ)過(guò)程自定義分頁(yè)詳解

時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)

  1.首先我是用存儲(chǔ)過(guò)程來(lái)解決的,要弄懂這個(gè)問(wèn)題,首先要從存儲(chǔ)過(guò)程下手,代碼如下:

  CREATE proc getdataset

  @TableList Varchar(200)='*',--搜索表的字段,比如:’id,datatime,job‘,用逗號(hào)隔開(kāi)

  @TableName Varchar(30), --搜索的表名

  @SelectWhere Varchar(500)='',--搜索條件,這里不用寫(xiě)where,比如:job=’teacher‘a(chǎn)nd class='2'

  @SelectOrderId Varchar(20),--表主鍵字段名。比如:id

  @SelectOrder Varchar(200)='', --排序,可以使用多字段排序但主鍵字段必需在最前面.也可以不寫(xiě),比如:order by class asc

  @intPageNo int=1, --頁(yè)號(hào)

  @intPageSize int=10 ,--每頁(yè)顯示數(shù)

  @RecordCount int OUTPUT? --總記錄數(shù)(存儲(chǔ)過(guò)程輸出參數(shù))

  as

  declare @TmpSelect????? NVarchar(600)

  declare @Tmp???? NVarchar(600)

  set nocount on--關(guān)閉計(jì)數(shù)

  set @TmpSelect = 'select @RecordCount = count(*) from '+@TableName+' '+@SelectWhere

  execute sp_executesql

  @TmpSelect,??? --執(zhí)行上面的sql語(yǔ)句

  N'@RecordCount int OUTPUT' ,?? --執(zhí)行輸出數(shù)據(jù)的sql語(yǔ)句,output出總記錄數(shù)

  @RecordCount? OUTPUT

  if (@RecordCount = 0)??? --如果沒(méi)有貼子,則返回零

  return 0

  /*判斷頁(yè)數(shù)是否正確*/

  if (@intPageNo - 1) * @intPageSize > @RecordCount?? --頁(yè)號(hào)大于總頁(yè)數(shù),返回錯(cuò)誤

  return (-1)

  set nocount off--打開(kāi)計(jì)數(shù)

  if @SelectWhere != ''

  begin

  set @TmpSelect = 'select top '+str(@intPageSize)+' '+@TableList+' from '+@TableName+' where '+@SelectOrderId+' not in(select top '+str((@intPageNo-1)*@intPageSize)+' '+@SelectOrderId+' from '+@TableName+' '+@SelectWhere +' '+@SelectOrder+') and '+@SelectWhere +' '+@SelectOrder

  end

  else

  begin

  set @TmpSelect = 'select top '+str(@intPageSize)+' '+@TableList+' from '+@TableName+' where '+@SelectOrderId+' not in(select top '+str((@intPageNo-1)*@intPageSize)+' '+@SelectOrderId+' from '+@TableName+' '+@SelectOrder+') '+@SelectOrder

  end

  execute sp_executesql @TmpSelect

  return(@@rowcount)

  GO

  其實(shí)代碼也很簡(jiǎn)單,學(xué)編程的人基本上都是懂數(shù)據(jù)庫(kù)的,這個(gè)存儲(chǔ)過(guò)程估計(jì)不是問(wèn)題。

  其他的代碼我都做了解釋,有顏色的那段我沒(méi)有解釋,我在這里解釋一下。其實(shí)也很簡(jiǎn)單,大家來(lái)看:

  select top '+str((@intPageNo-1)*@intPageSize)+' '+@SelectOrderId+' from '+@TableName+' '+@SelectWhere +' '+@SelectOrder+'

  這段代碼的執(zhí)行結(jié)果是什么了,是不是當(dāng)前頁(yè)前面的主鍵的集合啊,現(xiàn)在我們從所有的表中選出主鍵的值不在這個(gè)結(jié)果的之內(nèi)的pagesize個(gè)記錄不就是當(dāng)前頁(yè)的內(nèi)容了嗎?

  2.aspx頁(yè)面就不用再將了吧?我這里將代碼寫(xiě)上:

  <%@ Page Language="C#" AutoEventWireup="true" CodeFile="aa.aspx.cs" Inherits="_Default" %>

  http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  http://www.w3.org/1999/xhtml" >

  

  無(wú)標(biāo)題頁(yè)

  

  

  

  

  

  

  

  

  

  

  

  

  首頁(yè)

  上一頁(yè)

  下一頁(yè)

  尾頁(yè)

  第頁(yè),

  共頁(yè),共

  ID="lbRecord" runat="server" Text="Label">條記錄,轉(zhuǎn)到

  runat="server" Width="29px">

  頁(yè)轉(zhuǎn)到

  

  

  

  3.cs頁(yè)面其實(shí)也每頁(yè)什么好講的,也就是一些常用的代碼罷了……我把代碼加上,大家看看,要是有疑問(wèn)的可以回復(fù)我再解釋:

  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.Data.SqlClient;

  public partial class _Default : System.Web.UI.Page

  {

  protected void Page_Load(object sender, EventArgs e)

  {

  this.bind();

  }

  protected void link_Click(object sender, EventArgs e)

  {

  int page = Convert.ToInt32(txtlink.Text);

  Response.Redirect("aa.aspx?CurrentPage="+page+"");

  }

  public void bind()

  {

  int sumPage;

  int pageNo = 1;

  int pageSize = 3;

  if (Request.QueryString["CurrentPage"] == null)

  {

  pageNo = 1;

  }

  else

  {

  pageNo = Int32.Parse(Request.QueryString["CurrentPage"]);

  }

  SqlConnection conn = new SqlConnection(ConfigurationManager.AppSettings["ConStr"]);

  SqlDataAdapter da = new SqlDataAdapter();

  da.SelectCommand = new SqlCommand();

  da.SelectCommand.Connection = conn;

  da.SelectCommand.CommandText = "getdataset";

  da.SelectCommand.CommandType = CommandType.StoredProcedure;

  da.SelectCommand.Parameters.Add("@TableList", SqlDbType.VarChar, 200).Value = "job_id,job_desc,max_lvl";

  da.SelectCommand.Parameters.Add("@TableName", SqlDbType.VarChar, 30).Value = "jobs";

  //da.SelectCommand.Para

關(guān)鍵詞標(biāo)簽:ASP.NET

相關(guān)閱讀

文章評(píng)論
發(fā)表評(píng)論

熱門(mén)文章 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 鐘離圣遺物推薦-原神鐘離圣遺物詞條 鐘離圣遺物推薦-原神鐘離圣遺物詞條 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯(cuò)誤 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯(cuò)誤 使用aspnet_regiis.exe 重新注冊(cè).NET Framework 使用aspnet_regiis.exe 重新注冊(cè).NET Framework

相關(guān)下載

    人氣排行 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 asp.net表單提交方法GET\POST 在ASP.NET中如何判斷用戶IE瀏覽器的版本 Asp.net中messagebox的實(shí)現(xiàn)方法 Asp.net中的web.config配置 在ASP.NET MVC中實(shí)現(xiàn)大文件異步上傳 asp.net獲取URL和IP地址 FileUpload上傳多文件出現(xiàn)錯(cuò)誤的解決方法