用FSO读出的文章,如何分页
用FSO读出的文章,如何分页这里把读出来
mypath=trim(rs2("new_info"))
set fso=server.CreateObject("scripting.filesystemobject")
if not fso.fileexists(mypath) then
set ts=fso.OpenTextFile(server.MapPath(mypath),1,true)
response.write ts.readall 这里显示,
ts.close
set ts=nothing
end if
如果,文章过长,我怎么分页啊
有人说用算字数的方法,,可是在我的文件里还有HTML的代码都要给算进去了,有什么方法可以分页呢,
谢谢能给个全点的