ASP生成shtml的小程序

来源:百度知道 编辑:UC知道 时间:2024/06/02 07:16:22
我用ASP做的新闻系统,想全部实现转换为shtml
还有没有其他方法呀,我需要自动生成。。点击进入新闻详细页都要是HTML的

<!--#include file="conn.asp"-->
<html><head><TITLE>分页测试</TITLE><LINK href="inc/style.css" type=text/css rel=stylesheet></head>
<%
dim strhead,sql,totalpage,j,whichpage,howmanyrecs,str0,ref,counter,yyyy
strHead=strHead&"<html>"
strHead=strHead&"<head>"
strHead=strHead&"<TITLE>分页测试</TITLE>"
strHead=strHead&"<LINK href=""inc/style.css"" type=text/css rel=stylesheet>"
strHead=strHead&"</head>"
%>
<%
yyyy=5
sql="select * from news order by atime desc"
set rs=server.createObject("ADODB.Recordset")
rs.open sql,conn,1,1
%><%
rs.pagesize=yyyy
totalpage=rs.pagecount
rs.close
set rs=nothing

for j=1 to totalpage
sql="select * from news order by atime desc"
set rs=server.c