[求助]asp 文章内容分页
ASP 文章内容分页 ,有什么方法可以不不影响在线html编辑的内容,包括空格,行高等!!
<!--#include file="conn.asp"-->
<%id=request("id")
set rs=server.CreateObject("Adodb.RecordSet")
rs.open "select * from gg where id="&id,conn,1,1
If Request("page")="" Then
pageNum=0
Else
pageNum=Request("page")
End if
ContentStr=split((rs("content")),"{$NextPage$}")
For i=pageNum to pageNum
response.Write(""&ContentStr&"")
next
For p = 0 to ubound(ContentStr)
response.Write("<a href=3.asp?id="&id&"&page="&p&">"&p&"</a> ")
next%>
为什么内容不能显示
而分页可以显示
0 1 2