ASP資訊頁面自動生成HTML的兩種方法
阿新 • • 發佈:2019-01-01
1)目前已經有很多生成html的新聞系統,但是都是用的模板,本函式實現把asp頁面產生的html程式碼儲存成為一個html檔案,這樣就沒有必要改動原來的頁面就可以輕鬆完成一個生成html的新聞系統了
使用範例:
set fso=CreateObject("Scripting.FileSystemObject")
set f=fso.CreateTextFile( server.mappath( "youpage.htm" ), true )
f.WriteLine( asp2html("youpage.asp") )
f.close
set f = nothing
set fso = nothing
2)用re_write
目前較為普遍的動態網頁包括asp,php,jsp,shtml,jhtml,cgi......甚至還有一些自己定義的,比如:aspx,do,index,hello等等。表現形式為:news.asp?id=95。通過re_write將其轉換成news/95.html,以便於google對改網頁的識別。
re_write是iis裡的一個模組,
當需要將news.jsp?id=95的對映成news/95.html時,只需設定httpd.ini檔案:
RewriteRule /news/(/d+)/.html /news/.jsp/?id=$1 [N,I]
這樣就把 /news/95.html 這樣的請求對映成了 /news.jsp?id=95
然後你在連線處這樣寫:<a href=''/news/95.html''>95新聞</a>。
如果你的新聞是通過資料庫迴圈讀取出來的,那麼寫法是:
while(rs.next())
{
String id = (String)rs.getString(''id'');
out.print(''<a hef=''/news/''''+id+''.html>'');
out.print(''95新聞'');
out.print(''</a>'');
}
如果你在處理資料翻頁,那麼寫法是:
More_<%=Page%>_<%=type%>.html (注:page是翻頁頁數,type是資料型別)
表現形式:More_1_95.html
如果翻下一頁,則為:More_2_95.html,繼續下一頁的迴圈,則是:
More_3_95.html,以此類推。
不過你需要在httpd.ini檔案中增加以下程式碼:
RewriteRule /More_(/d+)_(/d+)/.html /jsp/more/.jsp/?page=$1&type=$2 [N,I]
如果你的動態程式有多個引數需要傳遞,那麼就增加多個(/d+)即可,如下:
RewriteRule /More_(/d+)_(/d+)_(/d+)/.html /jsp/more/.jsp/?page=$1&type=$2&type2=$3 [N,I]
|
使用範例:
set fso=CreateObject("Scripting.FileSystemObject")
set f=fso.CreateTextFile( server.mappath( "youpage.htm" ), true )
f.WriteLine( asp2html("youpage.asp") )
f.close
set f = nothing
set fso = nothing
2)用re_write
目前較為普遍的動態網頁包括asp,php,jsp,shtml,jhtml,cgi......甚至還有一些自己定義的,比如:aspx,do,index,hello等等。表現形式為:news.asp?id=95。通過re_write將其轉換成news/95.html,以便於google對改網頁的識別。
re_write是iis裡的一個模組,
當需要將news.jsp?id=95的對映成news/95.html時,只需設定httpd.ini檔案:
RewriteRule /news/(/d+)/.html /news/.jsp/?id=$1 [N,I]
這樣就把 /news/95.html 這樣的請求對映成了 /news.jsp?id=95
然後你在連線處這樣寫:<a href=''/news/95.html''>95新聞</a>。
如果你的新聞是通過資料庫迴圈讀取出來的,那麼寫法是:
while(rs.next())
{
String id = (String)rs.getString(''id'');
out.print(''<a hef=''/news/''''+id+''.html>'');
out.print(''95新聞'');
out.print(''</a>'');
}
如果你在處理資料翻頁,那麼寫法是:
More_<%=Page%>_<%=type%>.html (注:page是翻頁頁數,type是資料型別)
表現形式:More_1_95.html
如果翻下一頁,則為:More_2_95.html,繼續下一頁的迴圈,則是:
More_3_95.html,以此類推。
不過你需要在httpd.ini檔案中增加以下程式碼:
RewriteRule /More_(/d+)_(/d+)/.html /jsp/more/.jsp/?page=$1&type=$2 [N,I]
如果你的動態程式有多個引數需要傳遞,那麼就增加多個(/d+)即可,如下:
RewriteRule /More_(/d+)_(/d+)_(/d+)/.html /jsp/more/.jsp/?page=$1&type=$2&type2=$3 [N,I]