嗯,那我把那个more.asp放在soft文件夹里面,然后独立出来,music和软件的模板做一样,
那个新闻的分页能用吗。
javastr="<style></style>"
<!--#include file="articleconn.asp"-->
<%
typeid=request("id")
sql="select * from article where typeid=("&typeid&") order by dateandtime desc"
set rs=conn.execute(sql)
%>
<%if rs.bof and rs.eof then%>
document.write("暂时没有任何内容")
<%else%>
<%
i=0
do while not rs.eof
%>
javastr=javastr+"<tr><td>"
javastr=javastr+"<font color=\"#0066cc\">○ </font><span style=\"font-size:12pt;line-height: 12pt\"><a href='../<%=rs("path")%>/<%=rs("N_Fname")%>'><%=rs("title")%></span></a>"
javastr=javastr+"</td></tr>"
<%i=i+1
rs.movenext
loop
end if
%>
<%rs.close
set rs =nothing
conn.close
set conn=nothing
%>
document.write(javastr)这样可以显示,但是只要一加分页马上错误