ASP.NET生成靜態網頁的方法_.Net教程

      編輯Tag賺U幣
      教程Tag:暫無Tag,歡迎添加,賺取U幣!

      推薦:如何以及為何創建Search .NET版
      Search 開發負責人 Larry Jordan、開發人員 Michael Ruggiero 和 Michael Stanton 以及 .NET 框架項目經理 Hari Sekhar 在暗中構建了基于 .NET 技術的 Microsoft Web 站點搜索引擎新版

      環境:Microsoft .NET Framework SDK v1.1

      OS:Windows Server 2003 中文版

      ASP.Net生成靜態HTML頁,在Asp中實現的生成靜態頁用到的FileSystemObject對象,在.Net中涉及此類操作的是System.IO

      注:以下是參考別人的程序代碼,非原創!

      Code:

      以下為引用的內容:
      /生成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代碼

      Code:

      以下為引用的內容:
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
      <HTML>
      <HEAD>
      <title>ShowArticle</title>
      <body>
      biaoti
      <br>
      content<br>
      author
      </body>
      </HTML>
      biaoti
      <br>
      content<br>
      author
      </body>
      </HTML>

      提示添加成功后會出以當前時間為文件名的html文件!上面只是把傳遞過來的幾個參數直接寫入了HTML文件中,在實際應用中需要先添加數據庫,然后再寫入HTML文件

      請作者聯系本站,及時附注您的姓名。聯系郵箱:mb5u#vip.qq.com(把#改為@)。

      分享:ASP.NET網絡編程中常用到的27個函數集
      1、DateTime 數字型 以下為引用的內容: System.DateTime currentTime=new System.DateTime(); 1.1 取當前年月日時分秒 currentTime=System.DateTime.

      來源:模板無憂//所屬分類:.Net教程/更新時間:2008-08-22
      相關.Net教程