ASP实现长文章分页

时间:2021-12-09 23:59:25
  1. <%   
  2. '处理接收分页得参数,显示页数 也就默认第一页   
  3. 'page这个参数就是让变量pagenum去显示第一也得值:0   
  4. if Request("page")="" then   
  5. pageNum=0   
  6. '下面就是page接参数   
  7. else   
  8. pageNum=Request("page")  
  9. if not isnumeric(pageNum) then  
  10. Call DH.Alert("操作错误!","-1")  
  11. else  
  12. pageNum=clng(pageNum)  
  13. end if  
  14. end if %>   
  15. <%   
  16. '这里就是关键了 把你得内容字段赋给 ConTentStr   
  17.  
  18. ConTentStr=Replace((rs("dhsl_Content")),"|||"," ||| ")   
  19. %>   
  20. <%   
  21. '使用函数splist取出分段存入ConTentStr中   
  22.  
  23. ConTentStr=split(ConTentStr,"|||")   
  24. '下面就是url取得得页面变量   
  25. for i = pageNum to pageNum   
  26. %>   
  27.  
  28. '然后显示内容   
  29. <%=ConTentStr(i)%>   
  30. <% Next %>   
  31.  
  32. 本文章共分:   
  33. <%   
  34. for p = 0 to ubound(ConTentStr)   
  35. %>   
  36. <a href="内容页面名称.asp?传递的参数=<%=Request("接受的参数")%>&page=<%=p%>"class="text"><%=p+1%></a>   
  37. <% next %>页