ASP实现长文章分页
程序员文章站
2023-11-24 09:18:58
<% '处理接收分页得参数,显示页数 也就默认第一页 'page这个参数就是让变量pagenum去显示第一也得值:0 i...
<%
'处理接收分页得参数,显示页数 也就默认第一页
'page这个参数就是让变量pagenum去显示第一也得值:0
if request("page")="" then
pagenum=0
'下面就是page接参数
else
pagenum=request("page")
if not isnumeric(pagenum) then
call dh.alert("操作错误!","-1")
else
pagenum=clng(pagenum)
end if
end if %>
<%
'这里就是关键了 把你得内容字段赋给 contentstr
contentstr=replace((rs("dhsl_content")),"|||"," ||| ")
%>
<%
'使用函数splist取出分段存入contentstr中
contentstr=split(contentstr,"|||")
'下面就是url取得得页面变量
for i = pagenum to pagenum
%>
'然后显示内容
<%=contentstr(i)%>
<% next %>
本文章共分:
<%
for p = 0 to ubound(contentstr)
%>
<a href="内容页面名称.asp?传递的参数=<%=request("接受的参数")%>&page=<%=p%>"class="text"><%=p+1%></a>
<% next %>页
'处理接收分页得参数,显示页数 也就默认第一页
'page这个参数就是让变量pagenum去显示第一也得值:0
if request("page")="" then
pagenum=0
'下面就是page接参数
else
pagenum=request("page")
if not isnumeric(pagenum) then
call dh.alert("操作错误!","-1")
else
pagenum=clng(pagenum)
end if
end if %>
<%
'这里就是关键了 把你得内容字段赋给 contentstr
contentstr=replace((rs("dhsl_content")),"|||"," ||| ")
%>
<%
'使用函数splist取出分段存入contentstr中
contentstr=split(contentstr,"|||")
'下面就是url取得得页面变量
for i = pagenum to pagenum
%>
'然后显示内容
<%=contentstr(i)%>
<% next %>
本文章共分:
<%
for p = 0 to ubound(contentstr)
%>
<a href="内容页面名称.asp?传递的参数=<%=request("接受的参数")%>&page=<%=p%>"class="text"><%=p+1%></a>
<% next %>页