打印本页〗〖打印选项
ASP生成HTM文件方法(用于将原有ASP文件转换成对应HTM代码的新文件)
asp2htm.asp文件代码
<%
function getHTTPPage(url)
dim Http
set Http=server.createobject("MSXML2.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,"GB2312")
set http=nothing
if err.number<>0 then err.Clear
end function

Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function


Dim Url,Html
Url=request("url")
filename=request("filename")
Html = getHTTPPage(Url)

dim filename,MDBpath,fso,fout
'filename="groupTree.htm"
MDBpath="/"
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set fout = fso.CreateTextFile(server.mappath(""&filename&""))
fout.Write html
fout.close
set fout=nothing
set fso=nothing
if err then
response.Write "<script>alert('生成失败!')</script>"
else
response.Write "<script>alert('生成成功!')</script>"
end if
%>


使用方法:

有两个参数

url:为ASP文件的完整网址(例:http://127.0.0.1/user.asp
filename:为要转换成的HTM文件的文件名(需加后缀),所生成的htm文件在asp2htm.asp所在目录

例:

test.htm

<body>
<a href="asp2htm.asp?url=http://127.0.0.1/user.asp&filename=userlist.htm">将用户列表生成HTML文件</a>
</body>


文章作者:未知