C#根據網址生成靜態頁面

根據網址生成頁面的方法:服務器

 

C#代碼   收藏代碼
  1. bool CreateHtmlFile(string url, string path)  
  2. {   
  3. //http://keleyi.com/a/bjae/3d10wfax.htm  
  4.   
  5. string m_content = Utils.GetHtmlByUrl(Utils.GetAbsolutePath() + url, Encoding.UTF8);  
  6. if (m_content == string.Empty)  
  7. {  
  8. return false;  
  9. }  
  10.   
  11. Utils.CreateFile(m_content, Utils.GetMapPath(path), Encoding.UTF8);  
  12. return true;  

 

具體能夠到 http://hovertree.codeplex.com下載源代碼。網站

最新開發版本請打開http://hovertree.codeplex.com/SourceControl/latest#readme.txt
而後點擊Clone右邊的Download下載。

生成靜態頁面的好處:
靜態網站最大優點是訪問速率很是快,對搜索引擎收錄支持很是友好,節約網站服務器的資源。搜索引擎

相關文章
相關標籤/搜索