建站知識
網(wǎng)站設(shè)計知識 網(wǎng)站建設(shè)知識 網(wǎng)絡(luò)營銷知識 微信資訊 常見問題 網(wǎng)站備案 近期客戶網(wǎng)站建設(shè)套餐
標準型網(wǎng)站建設(shè) 精美型網(wǎng)站建設(shè) 營銷型網(wǎng)站建設(shè) 高端品牌網(wǎng)站建設(shè) 電子商務(wù)型網(wǎng)站建設(shè) 行業(yè)門戶型網(wǎng)站建設(shè) 手機網(wǎng)站建設(shè) 微信網(wǎng)站建設(shè)將asp頁面轉(zhuǎn)換成htm頁面,減少資源的消耗
來源:征帆網(wǎng)絡(luò) 作者:ymars 日期:2013-6-29
前段時間有個asp頁面執(zhí)行起來很慢,訪問人數(shù)又頗多,而且又不經(jīng)常修改,又懶得直接做成靜態(tài)的,每次都要從服務(wù)器下載來改,只好想辦法把asp頁面轉(zhuǎn)化成htm靜態(tài)頁面了,以增加承載的訪問人數(shù)和較少資源的消耗。此代碼適合萬網(wǎng)提供的獨立主機。
<%
Function GetPage(url)
'獲得文件內(nèi)容
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.franklinhawaii.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(要轉(zhuǎn)化的asp地址)和地址(要保存的html地址)設(shè)置好就可以了,一般這兩個文件在同一個目錄,才能保證圖片或者css、js起作用。
<%
Function GetPage(url)
'獲得文件內(nèi)容
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.franklinhawaii.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(要轉(zhuǎn)化的asp地址)和地址(要保存的html地址)設(shè)置好就可以了,一般這兩個文件在同一個目錄,才能保證圖片或者css、js起作用。
相關(guān)文章列表