一聚教程网:一个值得你收藏的教程网站

热门教程

asp存储过程分页函数

时间:2022-07-02 23:43:54 编辑:袖梨 来源:一聚教程网

'=============
'函数:分页储存过程
'功能:分页并编译
'参数:储存过程参数
'==============
function page_dbstorce(rs,table,outField,indexfield,pagesize,pageIndex,isRecount,typeOrder,condition)
 set cmd = server.CreateObject("ADODB.Command")
 cmd.CommandText="p_Agents_page_test"
 cmd.CommandType=4
 cmd.prepared = true
 set cmd.ActiveConnection = conn
 cmd.parameters("@tblName") = table
 cmd.parameters("@talFldName") = outField
 cmd.parameters("@fldName")=indexfield
 cmd.parameters("@PageSize")=pagesize
 cmd.parameters("@PageIndex")=pageindex
 cmd.parameters("@IsReCount")=0
 cmd.parameters("@OrderType")=typeOrder
 cmd.parameters("@strWhere")=condition
 set rs = cmd.execute
 if isRecount=1 then
 cmd.parameters("@IsReCount")=1
  cmd.execute
  allRecord = cmd.parameters("@allcount")
 end if
 set cmd = nothing
end function
function getSingalFieldValue(table,fieldstr,condition)
 on error resume next
 dim result
 result = conn.execute("select "&fieldstr&" from "&table&" where "&condition&"")(0)
 if err then result = false
 getSingalFieldValue = result
end function
function errpage(errorstr)
 response.Redirect("/error.asp?ps="&errorstr)
end function


'===========
'储存过程分页显示页面代码
'
'===========
function page_catalog(allrecord,allpage,currentpage, tagNum,querystringStr,pagetype)
 dim result,tag,linkstr
 linkstr = ""
 'querystringStr = "&fid="&request.QueryString("fid")&"&sid="&request.QueryString("sid")
 tag = tagNum
  result = "共有"&Allrecord&"个记录  共"&allpage&"页      "
  if currentpage>1 then
   result = result&"首页   "
  else
   result = result&"首页   "
  end if
  if currentpage>1 then
   result = result&"上一页   "
  else
   result = result&"上一页   "
  end if
  team=(currentpagetag)
  linkstrNum = ""
  if team>0 then linkstrNum = linkstrNum&"<<"
  if team<=0 then i=1 else i=0
   if (team+1)*tag>=Allpage then endpage=Allpage else endpage=(team+1)*tag
   for e=team*tag+i to endpage
    if e=currentpage then
     linkstrNum = linkstrNum&" "&e&""
    else
     linkstrNum = linkstrNum&" "&e&""
    end if
   next
   if team>>"
   linkstr = linkstr&linkstrNum
   result = result&linkstr&"   "
  if currentpage    result = result&"下一页   "
  else
   result = result&"下一页   "
  end if
  if currentpage>=allpage then
   result = result&"尾页"
  else
   result=result&"尾页"
  end if
 select case cint(pagetype)
  case 1
   result = linkstrNum
 end select
  page_catalog =result
end function

'分页储存过程代码2
function page_catalog_2(allrecord,allpage,currentpage, tagNum, pagetype)
 dim result,tag,linkstr
 linkstr = ""
 'querystringStr = "&fid="&request.QueryString("fid")&"&sid="&request.QueryString("sid")
 tag = tagNum
  result = "共有"&Allrecord&"个记录  共"&allpage&"页      "
  if currentpage>1 then
   result = result&"首页   "
  else
   result = result&"首页   "
  end if
  if currentpage>1 then
   result = result&"上一页   "
  else
   result = result&"上一页   "
  end if
  team=(currentpagetag)
  linkstrNum = ""
  if team>0 then linkstrNum = linkstrNum&"<<"
  if team<=0 then i=1 else i=0
   if (team+1)*tag>=Allpage then endpage=Allpage else endpage=(team+1)*tag
   for e=team*tag+i to endpage
    if e=currentpage then
     linkstrNum = linkstrNum&" "&e&""
    else
     linkstrNum = linkstrNum&" "&e&""
    end if
   next
   if team>>"
   linkstr = linkstr&linkstrNum
   result = result&linkstr&"   "
  if currentpage    result = result&"下一页   "
  else
   result = result&"下一页   "
  end if
  if currentpage>=allpage then
   result = result&"尾页"
  else
   result=result&"尾页"
  end if
 select case cint(pagetype)
  case 1
   result = linkstrNum
 end select
  page_catalog_2 =result
end function

热门栏目