HoverTree開源項目中HoverTreeWeb.HVTPanel的Index.aspx文件
是後台管理的首頁。
包含生成留言板首頁,以及顯示用戶名,退出等功能。
根據網址生成頁面的方法:
bool CreateHtmlFile(string url, string path) { //http://keleyi.com/a/bjae/3d10wfax.htm string m_content = Utils.GetHtmlByUrl(Utils.GetAbsolutePath() + url, Encoding.UTF8); if (m_content == string.Empty) { return false; } Utils.CreateFile(m_content, Utils.GetMapPath(path), Encoding.UTF8); return true; }
具體可以到 http://hovertree.codeplex.com 下載源代碼。
最新開發版本請打開http://hovertree.codeplex.com/SourceControl/latest#readme.txt
然後點擊Clone右邊的Download下載。
生成靜態頁面的好處:
靜態網站最大優勢是訪問速率非常快,對搜索引擎收錄支持非常友好,節約網站服務器的資源。
http://www.cnblogs.com/sosoft/p/kaifajishu.html