如何利用ASP.NET技術(shù)動(dòng)態(tài)生成HTML頁(yè)面
文章來(lái)源:天極yesky 作者:love610
思路
1. 利用如Dw-Mx這樣的工具生成html格式的模板,在需要添加格式的地方加入特殊標記(如$htmlformat$),動(dòng)態(tài)生成文件時(shí)利用代碼讀取此模板,然后獲得前臺輸入的內容,添加到此模板的標記位置中,生成新文件名后寫(xiě)入磁盤(pán),寫(xiě)入后再向數據庫中寫(xiě)入相關(guān)數據。
2. 使用后臺代碼硬編碼Html文件,可以使用HtmlTextWriter類(lèi)來(lái)寫(xiě)html文件。
優(yōu)點(diǎn)
1. 可以建立非常復雜的頁(yè)面,利用包含js文件的方法,在js文件內加入document.write()方法可以在所有頁(yè)面內加入如頁(yè)面頭,廣告等內容。
2. 靜態(tài)html文件利用MS Windows2000的Index Server可以建立全文搜索引擎,利用asp.net可以以DataTable的方式得到搜索結果。而Win2000的Index服務(wù)無(wú)法查找xml文件的內容。如果包括了數據庫搜索與Index索引雙重查找,那么此搜索功能將非常強大。
3. 節省服務(wù)器的負荷,請求一個(gè)靜態(tài)的html文件比一個(gè)aspx文件服務(wù)器資源節省許多。
缺點(diǎn)
思路二: 如果用硬編碼的方式,工作量非常大,需要非常多的html代碼。調試困難。而且使用硬編碼生成的html樣式無(wú)法修改,如果網(wǎng)站更換樣式,那么必須得重新編碼,給后期帶來(lái)巨大的工作量。 因此這里采用的是第一種思路
示列代碼
1.定義(template.htm)html模板頁(yè)面
<html>
<head>
<title></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模板頁(yè)面到stringbuilder對象里----
string[] format=new string[4];//定義和htmlyem標記數目一致的數組 StringBuilder htmltext=new StringBuilder();
try
{
using (StreamReader sr = new StreamReader("存放模板頁(yè)面的路徑和頁(yè)面名"))
{
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頁(yè)面</marquee>";
//文字說(shuō)明
//----------替換htm里的標記為你想加的內容
for(int i=0;i<4;i++)
{
htmltext.Replace("$htmlformat["+i+"]",format[i]);
}
//----------生成htm文件------------------――
try
{
using(StreamWriter sw=new StreamWriter("存放路徑和頁(yè)面名",false,System.Text.Encoding.GetEncoding("GB2312")))
{ sw.WriteLine(htmltext); sw.Flush(); sw.Close(); } }
catch
{
Response.Write ("The file could not be wirte:");
}
小結
用此方法可以方便的生成html文件。程序使用了是循環(huán)替換,因此對需替換大量元素的模板速度非快???。