思路
1. 利用如Dw-Mx這樣的工俱生成html格式的模板,在需要添加格式的地方加入特殊標記(如$htmlformat$),動態生成檔案時利用程式碼讀取此模板,然後取得前台輸入的內容,加入到此模板的標記位置中,產生新檔案名稱後寫入磁碟,寫入後再向資料庫中寫入相關資料。
2. 使用後台程式碼硬編碼Html文件,可以使用HtmlTextWriter類別來寫html檔。
優點
1. 可以建立非常複雜的頁面,利用包含js檔案的方法,在js檔案內加入document.write( )方法可以在所有頁面內加入如頁面頭,廣告等內容。
2. 靜態html檔案利用MS Windows2000的Index Server可以建立全文搜尋引擎,利用asp.net可以以DataTable的方式得到搜尋結果。而Win2000的Index服務無法找到xml檔案的內容。如果包含了資料庫搜尋與Index索引雙重查找,那麼此搜尋功能將非常強大。
3. 節省伺服器的負荷,請求一個靜態的html檔案比一個aspx檔案伺服器資源節省許多。
缺點
思路二: 如果用硬編碼的方式,工作量非常大,需要非常多的html程式碼。調試困難。而且使用硬編碼產生的html樣式無法修改,如果網站更換樣式,那麼就必須要重新編碼,為後期帶來巨大的工作量。
因此這裡採用的是第一個想法
示列程式碼
1.定義(template.htm)html範本頁
<html> <head> <title>www.knowsky.com</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> </head> <body > <table $htmlformat[0] height="100%" border="0" width="100%" cellpadding="10" cellspacing="0" bgcolor="#eeeeee" style="border:1px solid #000000"> <tr> <td width="100%" valign="middle" align="left"> <span style="color: $htmlformat[1];font-size: $htmlformat[2]">$htmlformat[3]</span> </td> </tr> </table> </body> </html>
2.asp.net程式碼:
##
//---------------------读html模板页面到stringbuilder对象里---- string[] format=new string[4];//定义和htmlyem标记数目一致的数组 StringBuilder htmltext=new StringBuilder(); try { using (StreamReader sr = new StreamReader("存放模板页面的路径和页面名")) { String line; while ((line = sr.ReadLine()) != null) { htmltext.Append(line); } sr.Close(); } } catch { Response.Write("<Script>alert('读取文件错误')</Script>"); } //---------------------给标记数组赋值------------ format[0]="background=\"bg.jpg\"";//背景图片 format[1]= "#990099";//字体颜色 format[2]="150px";//字体大小 format[3]= "<marquee>生成的模板html页面</marquee>";//文字说明 //----------替换htm里的标记为你想加的内容 for(int i=0;i<4;i++) { htmltext.Replace("$htmlformat["+i+"]",format[i]); } //----------生成htm文件------------------―― try { using(StreamWriter sw=new StreamWriter("存放路径和页面名",false,System.Text.Encoding.GetEncoding("GB2312"))) { sw.WriteLine(htmltext); sw.Flush(); sw.Close(); } } catch { Response.Write ("The file could not be wirte:"); }
#小結
用此方法可以方便的產生html檔。程式使用了是循環替換,因此對需替換大量元素的模板速度非常快。
【相關推薦】
2.以上是利用ASP.NET技術動態產生HTML頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!