首页 相关文章 将指定的asp文件内容生成HTML文件

将指定的asp文件内容生成HTML文件

<%
Function GetPage(url)
dim Retrieval
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", url, False ', "", ""
.Send
GetPage = BytesToBstr(.ResponseBody)
End With
Set Retrieval = Nothing
End Function

Function BytesToBstr(body)
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 = "GB2312"
BytesTo...[ 查看全文 ]

2016-01-29 标签:

将指定的asp文件内容生成HTML文件的相关文章

手机页面
收藏网站 回到头部