程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> aspx網頁以HTML形式存儲的幾個方法

aspx網頁以HTML形式存儲的幾個方法

編輯:.NET實例教程


第一種是模版替換:
環境:Microsoft .Net Framework SDK v1.1 
OS:Windows Server 2003 中文版
ASP.Net生成靜態Html頁
在ASP中實現的生成靜態頁用到的FileSystemObject對象!
在.Net中涉及此類操作的是System.IO 
以下是程序代碼 注:此代碼非原創!參考別人代碼 
//生成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代碼

<!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文件.
第二種:
WebRequest訪問ASPx頁面,然後獲取Response流,得到的就是Html 
private void button1_Click(object sender, System.EventArgs e)
{
  textBox1.Text=this.GetUrlValue("http://YourUrl");
}
//使用HttpWebRequest獲得URL的返回值
public string  GetUrlValue(string url)
{
System.Net.WebRequest       HttpWebRequest=System.Net.WebRequest.Create(url);
System.Net.WebResponse      HttpWebResponse =HttpWebRequest.GetResponse();
System.IO.StreamReader sr=new System.IO.StreamReader(HttpWebResponse.GetResponseStrea
m(), System.Text.Encoding.GetEncoding("GB2312"));
            return sr.ReadToEnd();
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved