1、ASP兩種簡(jiǎn)單的生成靜態(tài)首頁(yè)的方法
為什么要生成靜態(tài)首頁(yè)?
1、如果你首頁(yè)讀取的數(shù)據(jù)庫(kù)次數(shù)比較多,速度很慢,而且占用很多服務(wù)器資源。使用靜態(tài)頁(yè)面訪(fǎng)問(wèn)速度當(dāng)然快多了
2、搜索引擎容易搜索到
3、如果程序出問(wèn)題,也能保證首頁(yè)能訪(fǎng)問(wèn)。
4、其他的太多,自己想:)
應(yīng)用方式:
如果你的首頁(yè)是index.asp,你可以生成index.htm (默認(rèn)訪(fǎng)問(wèn)順序必須是index.htm,index.asp)。這樣訪(fǎng)問(wèn)者第一次訪(fǎng)問(wèn)到你的網(wǎng)站的時(shí)候打開(kāi)的是index.htm 。你可以把網(wǎng)站首頁(yè)的鏈接做成index.asp,這樣從網(wǎng)站任何一個(gè)頁(yè)面點(diǎn)擊首頁(yè)的鏈接出現(xiàn)的就是index.asp,這樣保證的信息更新的及時(shí)性(畢竟index.htm需要每次手動(dòng)更新)。
方法一:
直接將首頁(yè)文件包含在表單文本框中,將首頁(yè)代碼最為數(shù)據(jù)提交,然后生成靜態(tài)頁(yè)面。
代碼如下:
復(fù)制代碼 代碼如下:
%
'------------------------------------------------------------
'使用表單提交生成靜態(tài)首頁(yè)的代碼
'確保你的空間支持FSO,且首頁(yè)代碼內(nèi)容較少
'------------------------------------------------------------
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('已經(jīng)成功生成首頁(yè)!')/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>
缺點(diǎn):
1、如果首頁(yè)中包括@ ..>標(biāo)記,會(huì)提示出錯(cuò)。
2、如果首頁(yè)代碼較長(zhǎng),用表單無(wú)法提交過(guò)去(表單數(shù)據(jù)長(zhǎng)度有一定的限制)。
解決方案:
1、去掉index.asp中的@ >標(biāo)記
2、使用eWebEditor,提交支持大數(shù)據(jù)(能自動(dòng)分割)
優(yōu)點(diǎn):
可以在生成時(shí)對(duì)內(nèi)容實(shí)時(shí)修改。
方法二:
直接使用XMLHTTP獲取index.asp的代碼
復(fù)制代碼 代碼如下:
%
'----------------------------------------------------------
'使用XMLHTTP生成靜態(tài)首頁(yè)的代碼
'Curl 為你的首頁(yè)地址,確保你的空間支持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('已經(jīng)成功生成首頁(yè)!')/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、模板分離批量生成
模板文件中要替換的內(nèi)容均以{...}括起來(lái)
為力求簡(jiǎn)潔,去掉了錯(cuò)誤處理代碼(replace中要來(lái)替換的字符串參數(shù)不能為null值,當(dāng)然fso也應(yīng)該做錯(cuò)誤檢查)。
復(fù)制代碼 代碼如下:
%
' ---------------------------------------------------------------------------------------------------------------------
' 出自: kevin fung http://www.yaotong.cn
' 作者: kevin fung 落伍者ID:kevin2008,轉(zhuǎn)載時(shí)請(qǐng)保持原樣
' 時(shí)間: 2006/07/05落伍者論壇首發(fā)
' ----------------------------------------------------------------------------------------------------------------------
Dim start '該變量為指針將要指向的記錄集位置,通過(guò)參數(shù)動(dòng)態(tài)獲得
Dim Template '模板文件將以字符串讀入該變量
Dim content '替換后的字符串變量
Dim objConn '連接對(duì)象
Dim ConnStr '連接字符串
Dim sql '查詢(xún)語(yǔ)句
Dim cnt:cnt = 1 '本輪循環(huán)計(jì)數(shù)器初始化
start = request("start") '獲取本輪指針的開(kāi)始位置
If IsNumeric(start) Then start = CLng(start) Else start=1
If start=0 Then start = 1 '如果start
ConnStr = "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = " Server.MapPath("DataBase.mdb")
sql = "select * from table_name"
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open ConnStr
set rs = Server.CreateObject("ADODB.Recordset")
rs.open sql,objConn,1,1 '打開(kāi)數(shù)據(jù)集
rs.AbsolutePosition = start '最關(guān)鍵的一步,將指針指向start,start通過(guò)參數(shù)動(dòng)態(tài)獲得
Template = getTemplate(Server.MapPath("template.html"))' template.html為模板文件,通過(guò)函數(shù)getTemplate讀入到字符串,模板文件中要替換的內(nèi)容均以{...}括起來(lái)
While Not rs.eof And cnt= 500 '500是設(shè)定一次請(qǐng)求生成頁(yè)面的循環(huán)次數(shù),根據(jù)實(shí)際情況修改,如果太高了,記錄集很多的時(shí)候會(huì)出現(xiàn)超時(shí)錯(cuò)誤
content = Replace(Template,"{filed_name_1}",rs("filed_name_1")) '用字段值替換模板內(nèi)容
content = Replace(content,"{filed_name_2}",rs("filed_name_2"))
......
content = Replace(content,"{filed_name_n}",rs("filed_name_n"))
genHtml content,Server.MapPath("htmfiles/"rs("id")".html") '將替換之后的Template字符串生成HTML文檔,htmfiles為存儲(chǔ)靜態(tài)文件的目錄,請(qǐng)手動(dòng)建立
cnt = cnt + 1 '計(jì)數(shù)器加1
start = start + 1 '指針變量遞增
rs.movenext
wend
If Not rs.eof Then '通過(guò)刷新的方式進(jìn)行下一輪請(qǐng)求,并將指針變量start傳遞到下一輪
response.write "meta http-equiv='refresh' content='0;URL=?start="start"'>"
Else
response.write "生成HTML文件完畢!"
End if
rs.Close()
Set rs = Nothing
objConn.Close()
Set objConn = Nothing
Function getTemplate(template)'讀取模板的函數(shù),返回字符串,template為文件名
Dim fso,f
set fso=CreateObject("Scripting.FileSystemObject")
set f = fso.OpenTextFile(template)
getTemplate=f.ReadAll
f.close
set f=nothing
set fso=Nothing
End Function
Sub genHtml(content,filename)'將替換后的內(nèi)容寫(xiě)入HTML文檔,content為替換后的字符串,filename為生成的文件名
Dim fso,f
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateTextFile(filename,true)'如果文件名重復(fù)將覆蓋舊文件
f.Write content
f.Close
Set f = Nothing
set fso=Nothing
End Sub
%>
您可能感興趣的文章:- 比較詳細(xì)的Asp偽靜態(tài)化方法及Asp靜態(tài)化探討
- 不用mod_rewrite直接用php實(shí)現(xiàn)偽靜態(tài)化頁(yè)面代碼
- 網(wǎng)頁(yè)的HTML靜態(tài)化_網(wǎng)站優(yōu)化之談
- 通用大型網(wǎng)站頁(yè)面靜態(tài)化解決方案
- php 靜態(tài)化實(shí)現(xiàn)代碼
- asp 網(wǎng)站靜態(tài)化函數(shù)代碼html
- nginx 偽靜態(tài)化rewrite規(guī)則
- php靜態(tài)化頁(yè)面 htaccess寫(xiě)法詳解(htaccess怎么寫(xiě)?)
- smarty 緩存控制前的頁(yè)面靜態(tài)化原理
- aspx文件格式使用URLRewriter實(shí)現(xiàn)靜態(tài)化變成html
- php頁(yè)碼形式分頁(yè)函數(shù)支持靜態(tài)化地址及ajax分頁(yè)
- 使用ob系列函數(shù)實(shí)現(xiàn)PHP網(wǎng)站頁(yè)面靜態(tài)化
- 分享常見(jiàn)的幾種頁(yè)面靜態(tài)化的方法
- 如何對(duì)ASP.NET網(wǎng)站實(shí)現(xiàn)靜態(tài)化