【Hover】ASP.Net生成靜態HTML頁!

iDotNetSpace發表於2008-06-16
//生成HTML頁
  public static bool WriteFile(string strText,string strContent,string strAuthor)
  {
   string path = HttpContext.Current.Server.MapPath("/news/");
   Encoding code = Encoding.GetEncoding("gb2312");
   // 讀取模板檔案
   string temp = HttpContext.Current.Server.MapPath("/news/text.html");
   StreamReader sr=null;
   StreamWriter sw=null;
   string str="";  
   try
   {
    sr = new StreamReader(temp, code);
    str = sr.ReadToEnd(); // 讀取檔案
   }
   catch(Exception exp)
   {
    HttpContext.Current.Response.Write(exp.Message);
    HttpContext.Current.Response.End();
    sr.Close();
   }
  
   
   string htmlfilename=DateTime.Now.ToString("yyyyMMddHHmmss")+".html";
   // 替換內容
   // 這時,模板檔案已經讀入到名稱為str的變數中了
   str =str.Replace("ShowArticle",strText); //模板頁中的ShowArticle
   str = str.Replace("biaoti",strText);
   str = str.Replace("content",strContent);
   str = str.Replace("author",strAuthor);
   // 寫檔案
   try
   {
    sw = new StreamWriter(path + htmlfilename , false, code);
    sw.Write(str);
    sw.Flush();
   }
   catch(Exception ex)
   {
    HttpContext.Current.Response.Write(ex.Message);
    HttpContext.Current.Response.End();
   }
   finally
   {
    sw.Close();
   }
   return true;

此函式放在Conn.CS基類中了
在新增新聞的程式碼中引用 注:工程名為Hover
 
    if(Hover.Conn.WriteFilethis.Title.Text.ToString),this.Content.Text.ToString),this.Author.Text.ToString)))
    {
     Response.Write("新增成功");
    }
    else
    {
     Response.Write("生成HTML出錯!");
    }
-------------------------------------------------------------------------
模板頁Text.html程式碼
-------------------------------------------------------------------------


 
  ShowArticle
  
 

 biaoti
 

 content

 author
 


------------------------------------------------------------------------
提示新增成功後會出以當前時間為檔名的html檔案!上面只是把傳遞過來的幾個引數直接寫入了HTML檔案中,在實際應用中需要先新增資料庫,然後再寫入HTML檔案
而且需要把生成的檔名等寫入數庫以便以後呼叫等,此例項只是實現了根據提交過來引數替換模板中的相應的欄位!

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

相關文章