ASP生成靜態(tài)頁面的方法
發(fā)表時間:2024-06-07 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]1,WITH TEMPLET意思是,生成的頁面架構(gòu)將采用某個已設(shè)定的模板,在此之前我的一篇教程中介紹過,希望各位在看本教程之前對ASP采用模板應(yīng)熟悉下。(當然,不看也沒有問題,本教程同樣會提及精華部分的:)具體參考:http://www.cnbruce.com/blog/showlog.asp?c...
1,WITH TEMPLET意思是,生成的頁面架構(gòu)將采用某個已設(shè)定的模板,在此之前我的一篇教程中介紹過,希望各位在看本教程之前對ASP采用模板應(yīng)熟悉下。(當然,不看也沒有問題,本教程同樣會提及精華部分的:)具體參考:http://www.cnbruce.com/blog/showlog.asp?cat_id=26&log_id=474
2,ASP2HTML。不要我再說ASP轉(zhuǎn)變成HTML的好處了吧,呵呵,其中最值得知道的就是:靜態(tài)HTML頁和動態(tài)頁對服務(wù)器的要求承受能力小得多,同樣,靜態(tài)HTML搜索幾率遠比動態(tài)頁面的多得多。
那么,我現(xiàn)在需要處理的技術(shù)問題就是:
1,如何實現(xiàn)模板技術(shù)?(先參看下上篇文章吧)
2,如何實現(xiàn)2HTML技術(shù)?
3,如何讓模板技術(shù)與2HTML技術(shù)結(jié)合?
一、先進行技術(shù)原理分析
1,模板技術(shù)參看 www.cnbruce.com/blog/showlog.asp?cat_id=26&log_id=474
2,2HTML技術(shù)又該如何實現(xiàn)呢?如何使得ASP頁面轉(zhuǎn)變?yōu)镠TML?一般都會想到FSO組件,因為該組件能新建任何文件格式。
那么其整個運行過程是怎么樣的呢?
a,提供信息輸入頁面進行信息收集;
b,接受信息值先保存數(shù)據(jù)庫,再FSO生成文件;
c,技術(shù)性完成任務(wù),顯示剛被創(chuàng)建的HTML文件的路徑地址。
該技術(shù)的實現(xiàn)過程中有如下幾個難點:
i,F(xiàn)SO生成的文件是直接放在一個大文件夾下,還是單獨放在某個每日更新的子文件夾中?可能表述不準確,這樣理解吧:相信通過FSO生成的文件隨著時間的推移,文件會越來越多,管理也會越來越亂……通常你可能看到一些地址諸如 www.xxx.com/a/2004-5-20/200405201111.html 可以分析得出應(yīng)該是建立了當前日期的文件夾。這樣,一天就是一個文件夾的頁面內(nèi)容,查看管理也就顯得比較合理。
ii,我在試圖通過以上方法建立文件夾的時候,又發(fā)現(xiàn)了第二個問題。第一次通過FSO建立以當前日期命名的文件夾,沒有問題。當我有新的文件需要生成時,因為是同一個程序,所以,其又將會執(zhí)行建立同樣的文件夾。此時,F(xiàn)SO組件會發(fā)現(xiàn)該路徑已存在……卡殼-_-! 繼續(xù)處理,在首行添加代碼:
引用:
On Error Resume Next
嘿嘿,達到自欺欺人、掩耳盜鈴的效果。
當然規(guī)矩的用法是判斷文件夾的有無
引用:
<%
Set fso = Server.CreateObject("Scripting.FileSystemObject")
if (fso.FolderExists(Server.MapPath(folder))) then
'判斷如果存在就不做處理
else
'判斷如果不存在則建立新文件夾
fso.CreateFolder(Server.MapPath(folder))
end if
%>
iii,文件夾是建立了,文件該如何建立呢?主要也就是文件名的生成。當然這個就需要自己來寫個函數(shù),功能就是如何生成文件名:)
引用:
<%
function makefilename(fname)
fname = fname '前fname為變量,后fname為函數(shù)參數(shù)引用
fname = replace(fname,"-","")
fname = replace(fname," ","")
fname = replace(fname,":","")
fname = replace(fname,"PM","")
fname = replace(fname,"AM","")
fname = replace(fname,"上午","")
fname = replace(fname,"下午","")
makefilename = fname & ".html"
end function
%>
引用函數(shù)則:
<%fname = makefilename(now())%>
其實嘛,就是以年月日時分秒命名的文件。
iv,最后,生成的文件該如何查看到?當然需要把生成文件的路徑保存的數(shù)據(jù)庫中,并且添加到相對應(yīng)的記錄集中了。當然,這在下面的數(shù)據(jù)庫設(shè)計時會提及到。
3,模板技術(shù)和2HTML技術(shù)的結(jié)合:將模板中特殊代碼的值替換為從表單接受過來的值,完成模板功能;將最終替換過的所有模板代碼生成HTML文件。需要注意的是:替換應(yīng)能將輸入數(shù)據(jù)的格式或者支持UBB的代碼徹底改變。
二,再進行數(shù)據(jù)庫設(shè)計
目前數(shù)據(jù)庫的設(shè)計需要兩個表:一個是存放模板數(shù)據(jù)的;一個是存放信息內(nèi)容的。
1,建立新數(shù)據(jù)庫asp2html.mdb
2,設(shè)計新數(shù)據(jù)庫表c_moban
字段m_id(自動編號,主關(guān)鍵字);字段m_html(備注類型)。
并將下列完整的代碼拷貝至m_html字段
引用:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=hz">
<title>Cnbruce.Com ASP2HTML TEST</title>
</head>
<body leftmargin="0" topmargin="0">
<table width="100%" height="100%" border="0" cellpadding="5" cellspacing="2">
<tr align="right" bgcolor="#CCCCCC">
<td height="20" colspan="2">$cntop{LogContent}lt;/td>
</tr>
<tr valign="top">
<td width="25%" bgcolor="#e5e5e5">$cnleft{LogContent}lt;/td>
<td width="74%" bgcolor="#f3f3f3">$cnright{LogContent}lt;/td>
</tr>
</table>
</body>
</html>
3,設(shè)計新數(shù)據(jù)庫表c_news
字段c_id:自動編號,主關(guān)鍵字
字段c_title:文本類型,保存文章標題
字段c_content:備注類型,保存文章內(nèi)容
字段c_filepath:文本類型,保持生成文件的路徑地址
字段c_time:日期/時間類型,默認值:Now()
三,頁面需求設(shè)計
1,首先建立一個存放HTML頁的文件夾
在文件同一目錄下,建立文件夾newsfile,夾子內(nèi)部主要存放生成的HTML頁面,當然內(nèi)部還會采用程序方式建立以日期命名的子文件夾,以方便瀏覽以及管理。
2,功能函數(shù)頁面lib.asp
引用:
<%
'生成文件名的函數(shù)
function makefilename(fname)
fname = fname
fname = replace(fname,"-","")
fname = replace(fname," ","")
fname = replace(fname,":","")
fname = replace(fname,"PM","")
fname = replace(fname,"AM","")
fname = replace(fname,"上午","")
fname = replace(fname,"下午","")
makefilename=fname & ".shtml"
end function
'保持數(shù)據(jù)格式不變的函數(shù)
function HTMLEncode(fString)
fString = replace(fString, ">", ">")
fString = replace(fString, "<", "<")
fString = Replace(fString, CHR(32), " ")
fString = Replace(fString, CHR(13), "")
fString = Replace(fString, CHR(10) & CHR(10), "<br>")
fString = Replace(fString, CHR(10), "<br>")
HTMLEncode = fString
end function
%>
3,數(shù)據(jù)庫連接頁面conn.asp
完成數(shù)據(jù)庫的字符串連接方法
<%
set conn = Server.CreateObject("ADODB.Connection")
connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("asp2html.mdb")
conn.Open connstr
%>
4,信息輸入頁面add.html
其實很簡單:)就是表單嘛。注意action是跳轉(zhuǎn)到addit.asp
引用:
<form action="addit.asp" method="post">
Title:<input type="text" name="c_title"><br>
Content:<br>
<textarea name="c_content" rows="8" cols="30"></textarea><br>
<input type="submit" value="Add">
<input type="reset" value="Reset">
</form>
5,處理數(shù)據(jù)功能顯示頁面addit.asp
首先是處理接受過來的數(shù)據(jù),并將值寫入數(shù)據(jù)庫;接著將模板代碼進行引用,并將其中特殊代碼轉(zhuǎn)換為接受值,最終通過FSO生成HTML頁面。其中需要注意的還有,生成文件的路徑地址保存至數(shù)據(jù)庫表。
引用:
<%'容錯處理
On Error Resume Next
%>
<!--#include file="conn.asp" -->
<!--#include file="lib.asp" -->
<%'接受傳遞值
c_title=request.form("c_title")
c_content=request.form("c_content")
%>
<%'生成HTML文件名,建立文件夾,指定文件路徑
fname = makefilename(now()) 'makefilename為自定義函數(shù)
folder = "newsfile/"&date()&"/"
filepath = folder&fname
%>
<%'將接受值及路徑保持至數(shù)據(jù)庫表
sql = "Select * from c_news"
Set rs = Server.CreateObject ("ADODB.Recordset")
rs.Open sql,conn,3,2
rs.addnew
rs("c_title")=c_title
rs("c_content")=c_content
rs("c_filepath")=filepath
rs.update
rs.close
Set rs = Nothing
%>
<%'打開模板代碼,并將其中特殊代碼轉(zhuǎn)變?yōu)榻邮苤?br>sql1="select m_id,m_html from c_moban where m_id=1"
set rs1=Server.CreateObject("adodb.recordset")
rs1.open sql1,conn,1,1
mb_code=rs1("m_html")
rs1.close
set rs1=nothing
conn.close
set conn=nothing
c_title=htmlencode(c_title)
c_content=htmlencode(c_content)
mb_code=replace(mb_code,"$cntop{LogContent}quot;,now())
mb_code=replace(mb_code,"$cnleft{LogContent}quot;,c_title)
mb_code=replace(mb_code,"$cnright{LogContent}quot;,c_content)
%>
<%'生成HTML頁面
Set fso = Server.CreateObject("Scripting.FileSystemObject")
fso.CreateFolder(Server.MapPath(folder))
Set fout = fso.CreateTextFile(Server.MapPath(filepath))
fout.WriteLine mb_code
fout.close
%>
文章添加成功,<a href="showit.asp">瀏覽</a>
6,顯示數(shù)據(jù)庫表記錄,并做指向HTML頁的鏈接:showit.asp
引用:
<!--#include file="conn.asp" -->
<!--#include file="lib.asp" -->
<%
Set rs = Server.CreateObject ("ADODB.Recordset")
sql = "Select * from c_news order by c_id desc"
rs.Open sql,conn,1,1
%>
<%
if rs.EOF and rs.BOF then
response.write ("暫時還沒有文章,<a href=add.html>添加</a>")
else
Do Until rs.EOF
%>
<table width="758" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#000000">
<tr>
<td width="159" align="right" bordercolor="#CCCCCC" bgcolor="#CCCCCC"><%=rs("c_time")%></td>
<td width="591" bordercolor="#f3f3f3" bgcolor="#f3f3f3"><a href=<%=rs("c_filepath")%> target="a_blank"><%=rs("c_title")%></a></td>
</tr>
<tr>
<td valign="top" align="right" bordercolor="#ececec" bgcolor="#ececec">[<a href=del.asp?c_id=<%=rs("c_id")%>>Dell</a>][<a href=change.asp?c_id=<%=rs("c_id")%>>Edit</a>][<a href="add.html">Add</a>]</td>
<td valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><%=htmlencode(rs("c_content"))%></td>
</tr>
</table><br>
<%
rs.MoveNext
Loop
end if
%>
<%
rs.close
Set rs = Nothing
conn.close
set conn=Nothing
%>
7,修改數(shù)據(jù)內(nèi)容頁change.asp
修改數(shù)據(jù)內(nèi)容,同時也需要修改更新對應(yīng)的HTML頁面。修改其實就是重新生成文件,且文件名和之前一樣,類似文件的覆蓋。
引用:
<!--#include file="conn.asp" -->
<!--#include file="lib.asp" -->
<%id=request.querystring("c_id")%>
<%
if request.form("submit")="change" then
c_title=request.form("c_title")
c_content=request.form("c_content")
c_id=request.form("c_id")
c_filepath=request.form("c_filepath")
Set rs = Server.CreateObject ("ADODB.Recordset")
sql = "Select * from c_news where c_id="&c_id
rs.Open sql,conn,3,2
rs("c_title")=c_title
rs("c_content")=c_content
rs("c_time")=now()
rs.update
rs.close
Set rs = Nothing
%>
<%'打開模板代碼,并將其中特殊代碼轉(zhuǎn)變?yōu)榻邮苤?br>sql1="select m_id,m_html from c_moban where m_id=1"
set rs1=Server.CreateObject("adodb.recordset")
rs1.open sql1,conn,1,1
mb_code=rs1("m_html")
rs1.close
set rs1=nothing
conn.close
set conn=nothing
c_title=htmlencode(c_title)
c_content=htmlencode(c_content)
mb_code=replace(mb_code,"$cntop{LogContent}quot;,now())
mb_code=replace(mb_code,"$cnleft{LogContent}quot;,c_title)
mb_code=replace(mb_code,"$cnright{LogContent}quot;,c_content)
%>
<%'生成HTML頁面
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set fout = fso.CreateTextFile(Server.MapPath(c_filepath))
fout.WriteLine mb_code
fout.close
%>
<%response.redirect("showit.asp")%>
<%end if%>
<%
if id<>"" then
Set rs = Server.CreateObject ("ADODB.Recordset")
sql="select * from c_news where c_id="&id
rs.Open sql,conn,1,1
c_id=rs("c_id")
c_filepath=rs("c_filepath")
c_title=rs("c_title")
c_content=rs("c_content")
end if
%>
<form action="change.asp" method="post">
Title:<input type="text" name="c_title" value=<%=c_title%>><br>
Content:<br>
<textarea name="c_content" rows="8" cols="30"><%=c_content%></textarea><br>
<input type="submit" value="change" name="submit">
<input type="reset" value="Reset">
<input name="c_id" type="hidden" value="<%=id%>">
<input name="c_filepath" type="hidden" value="<%=c_filepath%>">
</form>
8,刪除記錄頁del.asp
同樣!刪除,除了刪除數(shù)據(jù)庫表中的記錄,與其對應(yīng)的HTML頁面也需刪除。代碼如下:
引用:
<!--#include file="conn.asp" -->
<%
c_id = request.querystring("c_id")
sql = "Select * from c_news where c_id="&c_id
Set rs = Server.CreateObject ("ADODB.Recordset")
rs.Open sql,conn,2,3
filepath=rs("c_filepath")
Set fso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFile(Server.mappath(filepath))
Set fso = nothing
rs.delete
rs.close
Set rs = Nothing
conn.close
set conn=nothing
%>
<%response.redirect("showit.asp")%>
四,其它功能
模板管理頁面:
不會每次都是打開數(shù)據(jù)庫表進行增加或者修改模板代碼吧,所以,管理代碼的頁面程序不能少了,自己搗鼓下應(yīng)該很簡單的。當然,之前管理員的登錄認證程序就不在書中交代了:)還有,如果設(shè)計了多個模板,那么在發(fā)表信息的時候應(yīng)添加模板選擇單選框,同樣在執(zhí)行轉(zhuǎn)換HTML時,SQL選擇的不同m_id了。