小議ASP.NET模板引擎技術的使用

iDotNetSpace發表於2009-10-14

我們將從PHP模板引擎技術談談ASP.NET模板引擎技術,希望通過本文的例項和程式碼,能讓大家在今後的開發過程中更加靈活的運用ASP.NET模板引擎技術。

以前聽我朋友說起php的模板引擎技術的時候似懂非懂哪時感覺真的很強,一直在想asp.net有這種技術嗎?我不知道我的理解是不是對的.其實asp.net模板引擎技術就是先建好一個靜態的html頁面我們稱它為模板頁,你如果有不同形式的頁面哪就得建立不同的靜態模板頁,然後在後臺用檔案操作往這個檔案裡寫東西然後在把這個模板頁另存到一個靜態頁面的目錄,不好意思可能我的理解太俗,如果有更好的理解和想法可以在apolov發文章告訴我謝謝。現在我附加一下程式碼

Default.aspx這個頁面只有幾個textbox控制元件和兩個按妞控制元件

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" ValidateRequest="false" Inherits="ToHtml._Default" %> 
  2. nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  3. <html xmlns="http://www.w3.org/1999/xhtml" > 
  4. <head runat="server"> 
  5.     <title>Asp.net生成靜態頁title> 
  6. head> 
  7. <body> 
  8.     <form id="form1" runat="server"> 
  9.     <div> 
  10.         標題:<asp:TextBox ID="txtTitle" runat="server" Width="352px">asp:TextBox><br /> 
  11.         內容:<asp:TextBox ID="txtContent" runat="server" Height="179px" TextMode="MultiLine" 
  12.             Width="350px">asp:TextBox><br /> 
  13.         <br /> 
  14.         <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="根據模板生成" /><br /> 
  15.         <br /> 
  16.         <br /> 
  17.         Url地址:<asp:TextBox ID="txtUrl" runat="server" ToolTip="請確認Url地址的存在" Width="359px">asp:TextBox> 
  18.         <br /> 
  19.         <br /> 
  20.         <asp:Button ID="Button2" runat="server" Text="根據Url地址生成" OnClick="Button2_Click" />div> 
  21.     form> 
  22. body> 
  23. html> 

要準備的模板頁程式碼,htm檔案頁面比較簡單,如果有興趣的朋友可以做成更復雜的模板頁嘿嘿

  1. !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml" > 
  3. <head> 
  4.     <title> $title$ 生成靜態頁title> 
  5.     <style type="text/css"> 
  6. <!--  
  7. .STYLE1 {  
  8.  font-size: 16px;  
  9.  font-weight: bold;  
  10. }  
  11. --> 
  12.     style> 
  13. head> 
  14. <body> 
  15. <br /> 
  16. <br /> 
  17. <table width="100%" border="0" bgcolor="#339900"> 
  18.   <tr> 
  19.     <td height="34" align="center" bgcolor="#FFFFFF"><span class="STYLE1">$title$ span>td> 
  20.   tr> 
  21.   <tr> 
  22.     <td height="42" bgcolor="#FFFFFF"><br /> 
  23.       <br /> 
  24.     內容:$content$ td> 
  25.   tr> 
  26. table> 
  27.  
  28. body> 
  29. html> 

後臺生成靜態頁面的程式碼Default.aspx.cs主要用到了檔案操做

  1. sing System;  
  2. using System.Data;  
  3. using System.Configuration;  
  4. using System.Web;  
  5. using System.Web.Security;  
  6. using System.Web.UI;  
  7. using System.Web.UI.WebControls;  
  8. using System.Web.UI.WebControls.WebParts;  
  9. using System.Web.UI.HtmlControls;  
  10. using System.Net;  
  11. using System.Text;  
  12. using System.IO;  
  13.  
  14. namespace ToHtml  
  15. {  
  16.     //51aspx.com生成靜態頁演示檔案,轉載請保留該資訊  
  17.     public partial class _Default : System.Web.UI.Page  
  18.     {  
  19.         protected void Page_Load(object sender, EventArgs e)  
  20.         {  
  21.              
  22.         }  
  23.  
  24.         //根據模板生成,保持在html資料夾中(部分原始碼蒐集於網路)  
  25.         protected void Button1_Click(object sender, EventArgs e)  
  26.         {  
  27.             //原始碼是替換掉模板中的特徵字元  
  28.  
  29.             string mbPath =Server.MapPath("template.htm");  
  30.             Encoding code = Encoding.GetEncoding("gb2312");  
  31.             StreamReader sr = null;  
  32.             StreamWriter sw = null;  
  33.             string str = null;  
  34.  
  35.             //讀取  
  36.             try 
  37.             {  
  38.                 sr = new StreamReader(mbPath, code);  
  39.                 str = sr.ReadToEnd();  
  40.  
  41.             }  
  42.             catch (Exception ex)  
  43.             {  
  44.                 throw ex;  
  45.             }  
  46.             finally 
  47.             {  
  48.                 sr.Close();  
  49.             }  
  50.  
  51.             //根據時間自動重新命名,副檔名也可以自行修改  
  52.             string fileName = DateTime.Now.ToString("yyyyMMddHHmmss") + ".htm";  
  53.             str = str.Replace("$title$", txtTitle.Text);//替換Title  
  54.             str = str.Replace("$content$", txtContent.Text);//替換content  
  55.  
  56.             //生成靜態檔案  
  57.             try 
  58.             {  
  59.                 sw = new StreamWriter(Server.MapPath("htm/") + fileName, false, code);  
  60.                 sw.Write(str);  
  61.                 sw.Flush();  
  62.  
  63.             }  
  64.             catch (Exception ex)  
  65.             {  
  66.                 throw ex;  
  67.             }  
  68.             finally 
  69.             {  
  70.                 sw.Close();  
  71.                 Response.Write("恭喜+fileName+" target=_blank>"+fileName+"已經生成,儲存在htm資料夾下!");  
  72.             }  
  73.  
  74.  
  75.         }  
  76.  
  77.  
  78.         //根據Url地址生成靜態頁保持  
  79.         protected void Button2_Click(object sender, EventArgs e)  
  80.         {  
  81.             Encoding code = Encoding.GetEncoding("utf-8");  
  82.             StreamReader sr = null;  
  83.             StreamWriter sw = null;  
  84.             string str = null;  
  85.  
  86.             //讀取遠端路徑  
  87.             WebRequest temp = WebRequest.Create(txtUrl.Text.Trim());  
  88.             WebResponse myTemp = temp.GetResponse();  
  89.             sr = new StreamReader(myTemp.GetResponseStream(), code);  
  90.             //讀取  
  91.             try 
  92.             {  
  93.                 sr = new StreamReader(myTemp.GetResponseStream(), code);  
  94.                 str = sr.ReadToEnd();  
  95.  
  96.             }  
  97.             catch (Exception ex)  
  98.             {  
  99.                 throw ex;  
  100.             }  
  101.             finally 
  102.             {  
  103.                 sr.Close();  
  104.             }  
  105.             string fileName = DateTime.Now.ToString("yyyyMMddHHmmss") + ".html";  
  106.  
  107.             //寫入  
  108.             try 
  109.             {  
  110.                 sw = new StreamWriter(Server.MapPath("htm/") + fileName, false, code);  
  111.                 sw.Write(str);  
  112.                 sw.Flush();  
  113.  
  114.             }  
  115.             catch (Exception ex)  
  116.             {  
  117.                 throw ex;  
  118.             }  
  119.             finally 
  120.             {  
  121.                 sw.Close();  
  122.                 Response.Write("恭喜 + fileName + " target=_blank>" + fileName + "已經生成,儲存在htm資料夾下!");  
  123.             }  
  124.  
  125.         }  
  126.     }  

原文標題:Asp.net模板引擎技術

連結:http://www.cnblogs.com/resoar/archive/2009/10/09/1579370.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-616545/,如需轉載,請註明出處,否則將追究法律責任。

相關文章