将asp页面转换成htm页面,减少资源的消耗

2023-11-04    分类: 网站建设

前段时间有个asp页面执行起来很慢,访问人数又颇多,而且又不经常修改,又懒得直接做成静态的,每次都要从服务器下载来改,只好想办法把asp页面转化成htm静态页面了,以增加承载的访问人数和较少资源的消耗。此代码适合万网提供的独立主机。
<%
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"
bytesTobstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function

on error resume next
Url="http://www.cdcxhl.com"'要读取的页面地址
response.write "开始更新首页..."
wstr = Getpage(Url)

'response.write(wstr)
Set fs=Server.CreateObject("Scripting.FileSystemObject")

'if not MyFile.FolderExists(server.Mappath("/html/")) then
'MyFile.CreateFolder(server.Mappath("/html/"))'
'end if

'要存放的页面地址
dizhi=server.Mappath("index.htm")
If (fs.FileExists(dizhi)) Then
fs.DeleteFile(dizhi)
End If

Set CrFi=fs.CreateTextFile(dizhi)
Crfi.Writeline(wstr)
set CrFi=nothing
set fs=nothing
response.write "...<font color=red>更新完成!</font>"
%>
代码算是最简单的,直接保存成一个asp文件即可,只要把URL(要转化的asp地址)和地址(要保存的html地址)设置好就可以了,一般这两个文件在同一个目录,才能保证图片或者css、js起作用。

当前标题:将asp页面转换成htm页面,减少资源的消耗
文章网址:https://www.cdcxhl.com/news21/292421.html

成都网站建设公司_创新互联,为您提供移动网站建设企业网站制作虚拟主机网页设计公司网站制作App设计

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都网站建设