%
if not (session("MemName")<>"" and session("MemLogin")="Succeed") then
response.redirect "MemberInfo.asp"
response.end
end if
%>
会员中心
<%=WebMenu()%>
<%=WebLocation()%><%=WebTitle%>
<%=WebContent()%>
<%
function WebTitle
WebTitle="积分兑换"
end function
function WebMenu()
response.write "会员资料 "
response.write "积分兑换 "
response.write "密码找回 "
response.write "退出登录 "
end function
function WebLocation()
WebLocation=" 您的位置:首页" & _
" >> 帐户中心" &_
" >> 积分兑换"
end function
function WebContent()
dim idCount'记录总数
dim pages'每页条数
pages=12
dim pagec'总页数
dim page'页码
page=clng(request("Page"))
dim pagenc'每页显示的分页页码数量=pagenc*5+1
pagenc=5
dim pagenmax'每页显示的分页的最大页码
dim pagenmin'每页显示的分页的最小页码
dim pageprevious'上一相邻的页码
dim pagenext '下一相邻的页码
'重置数据表名
dim datafrom'数据表名
datafrom="F_Yang_Point "
dim datawhere'数据条件
datawhere="where ViewFlag "
dim sqlid'本页需要用到的id
dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
PATH_INFO = request.servervariables("PATH_INFO")
QUERY_STRING = request.ServerVariables("QUERY_STRING")'
if QUERY_STRING = "" then
Myself = PATH_INFO & "?"
elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
Myself= PATH_INFO & "?" & QUERY_STRING & "&"
else
Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
end if
dim taxis'排序的语句 asc,desc
taxis="order by id desc "
dim i'用于循环的整数
'获取记录总数
dim rs,sql
set rs = server.createobject("adodb.recordset")
sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,0,1
idCount=rs("idCount")
'获取记录总数
if(idcount>0) then'如果记录总数=0,则不处理
if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
pagec=int(idcount/pages)'获取总页数
else
pagec=int(idcount/pages)+1'获取总页数
end if
'获取本页需要用到的id============================================
'读取所有记录的id数值,因为只有id所以速度很快
sql="select id from ["& datafrom &"] " & datawhere & taxis
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
rs.pagesize = pages '每页显示记录数
if page < 1 then page = 1
if page > pagec then page = pagec
if pagec > 0 then rs.absolutepage = page
for i=1 to rs.pagesize
if rs.eof then exit for
if(i=1)then
sqlid=rs("id")
else
sqlid=sqlid &","&rs("id")
end if
rs.movenext
next
'获取本页需要用到的id结束============================================
end if
if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
'用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,0,1
dim SmallPicPath
response.write "
"
response.write "
"
while not rs.eof '填充数据到表格
SmallPicPath=HtmlSmallPic(rs("GroupID"),rs("SmallPic"),rs("Exclusive"))
response.write "
" & vbCrLf
Response.Write "| 共计:"&idcount&"条记录 页次:"&page&"/"&pagec&" 每页:"&pages&"条 " & vbCrLf
pagenmin=page-pagenc '计算页码开始值
pagenmax=page+pagenc '计算页码结束值
if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
if(page>1) then response.write (" ") '如果页码大于1则显示(第一页)
if page-(pagenc*2+1)<=0 then
pageprevious=1
else
pageprevious=page-(pagenc*2+1)
end if
if(pagenmin>1) then response.write (" ") '如果页码开始值大于1则显示(更前)
if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
for i = pagenmin to pagenmax'循环输出页码
if(i=page) then
response.write (" "& i &" ")
else
response.write ("["& i &"]")
end if
next
if page+(pagenc*2+1)>=pagec then
pagenext=pagec
else
pagenext=page+(pagenc*2+1)
end if
if(pagenmax ") '如果页码结束值小于总页数则显示(更后)
if(page") '如果页码小于总页数则显示(最后页)
response.write "
" & vbCrLf
rs.close
set rs=nothing
end function
%>