程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP頁面靜態化批量生成代碼分享(多種方法)

ASP頁面靜態化批量生成代碼分享(多種方法)

編輯:關於ASP編程
1、ASP兩種簡單的生成靜態首頁的方法

為什麼要生成靜態首頁?
1、如果你首頁讀取的數據庫次數比較多,速度很慢,而且占用很多服務器資源。使用靜態頁面訪問速度當然快多了
2、搜索引擎容易搜索到
3、如果程序出問題,也能保證首頁能訪問。
4、其他的太多,自己想:)
應用方式:
如果你的首頁是index.asp,你可以生成index.htm (默認訪問順序必須是index.htm,index.asp)。這樣訪問者第一次訪問到你的網站的時候打開的是index.htm 。你可以把網站首頁的鏈接做成index.asp,這樣從網站任何一個頁面點擊首頁的鏈接出現的就是index.asp,這樣保證的信息更新的及時性(畢竟index.htm需要每次手動更新)。
方法一:
直接將首頁文件包含在表單文本框中,將首頁代碼最為數據提交,然後生成靜態頁面。
代碼如下:
復制代碼 代碼如下:
<%
'------------------------------------------------------------
'使用表單提交生成靜態首頁的代碼
'確保你的空間支持FSO,且首頁代碼內容較少
'------------------------------------------------------------
dim content
content=Trim(Request.Form("content"))
if content<>"" then
call makeindex()
end if
sub makeindex()
Set Fso = Server.CreateObject("Scripting.FileSystemObject")
Filen=Server.MapPath("index.htm")
Set Site_Config=FSO.CreateTextFile(Filen,true, False)
Site_Config.Write content
Site_Config.Close
Set Fso = Nothing
Response.Write("<script>alert('已經成功生成首頁!')</script>")
end sub
%>
<form name="form1" method="post" action="">
<textarea name="content">
<!-- #i nclude file="index.asp" -->
</textarea>
<br>
<input type="submit" name="Submit" value="提交">
</form>

缺點:
1、如果首頁中包括<@ ..>標記,會提示出錯。
2、如果首頁代碼較長,用表單無法提交過去(表單數據長度有一定的限制)。
解決方案:
1、去掉index.asp中的<@ >標記
2、使用eWebEditor,提交支持大數據(能自動分割)
優點:
可以在生成時對內容實時修改。
方法二:
直接使用XMLHTTP獲取index.asp的代碼

復制代碼 代碼如下:
<%
'----------------------------------------------------------
'使用XMLHTTP生成靜態首頁的代碼
'Curl 為你的首頁地址,確保你的空間支持FSO
'-----------------------------------------------------------
dim read,Curl,content
Curl="http://www.xx0123.com/index.asp"
read=getHTTPPage(Curl)
if read<>"" then
content=read
call makeindex()
end if
sub makeindex()
Set Fso = Server.CreateObject("Scripting.FileSystemObject")
Filen=Server.MapPath("index.htm")
Set Site_Config=FSO.CreateTextFile(Filen,true, False)
Site_Config.Write content
Site_Config.Close
Set Fso = Nothing
Response.Write("<script>alert('已經成功生成首頁!')</script>")
end sub
Function getHTTPPage(url)
dim http
set http=Server.createobject("Microsoft.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
%>


2、模板分離批量生成

模板文件中要替換的內容均以{...}括起來
為力求簡潔,去掉了錯誤處理代碼(replace中要來替換的字符串參數不能為null值,當然fso也應該做錯誤檢查)。
復制代碼 代碼如下:
<%
' ---------------------------------------------------------------------------------------------------------------------
' 出自: kevin fung http://www.yaotong.cn
' 作者: kevin fung 落伍者ID:kevin2008,轉載時請保持原樣
'
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved