以下檔案在我的環境下,成功了,僅供參考:
1.建立模版頁:modelhtml.html
內容如下:
廣告區
articletitle
articlecontent
2.在後台寫一函式:writefile(string articletitle, string articlecontent, string articleid)
string htmlfilename = articleid + ".html"; //生成檔案的檔名
//string htmlfilename = datetime.now.tostring("yyyymmddhhmmss_") + articleid + ".html";
// 替換內容
str = str.replace("pagetitle", articletitle); //模板頁中的pagetitle
str = str.replace("articletitle", articletitle);
str = str.replace("articlecontent", articlecontent);
// 寫檔案
trycatch (exception ex)
finally
return true;
}#endregion
3.呼叫:
string nid = e.commandargument.tostring();
string sqlstr = "select ntitle,ntitle2,ncontent,npublisher,npubtime,nfrom from tnews where nid =" + e.commandargument.tostring(); //讀取資料,根據你的環境,修改一下.
config db = new config(); //連線資料庫.
sqldatareader dr = db.getdatareader(sqlstr);
dr.read();
if (dr.hasrows)
生成靜態頁面的方法
對於 特別是cms系統中,生成靜態頁面是必不可少的,靜態頁面不用去和資料庫打交道,可以提高頁面的訪問速度。生成靜態頁面的方法一般有 兩種,一種是以模板的形式生成,第二種是直接根據url來生成靜態頁面。以模板形式生成的原理就是字串替換,在.net中已經提供了乙個字串替換的函式 replace 用模板生...
PHP生成靜態頁面的方法
雖然 方法 很多,但使用起來簡便容易的,我覺得還是先判斷已經生成的首頁檔案的生成時間和現有時間之間的差值,如果滿足某個值就開始生成,這種方法比較來得容易,不多說了,開始吧!在開始之前還是提一下三個函式吧 ob start ob end clean ob get contents ob start 是...
ASP生成靜態頁面的方法
asp2html with templet 我希望大家看到該標題就能讓想象到它的功能 1,with templet意思是,生成的頁面架構將採用某個已設定的模板,在此之前我的一篇教程中介紹過,希望各位在看本教程之前對asp採用模板應熟悉下。當然,不看也沒有問題,本教程同樣會提及精華部分的 具體參考 h...