ASP.NET中怎么實(shí)現(xiàn)頁面靜態(tài)化,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
創(chuàng)新互聯(lián)建站主營(yíng)渝北網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,重慶APP開發(fā)公司,渝北h5小程序制作搭建,渝北網(wǎng)站營(yíng)銷推廣歡迎渝北等地區(qū)企業(yè)咨詢
ASP.NET頁面靜態(tài)化***步:首頁選擇HTML原型網(wǎng)頁
然后再該HTML網(wǎng)頁添加一些自認(rèn)為特別的標(biāo)記,已便到時(shí)候靜態(tài)化的時(shí)候系統(tǒng)能更精確的進(jìn)行操作!
ASP.NET頁面靜態(tài)化第二步:獲取HTML網(wǎng)頁代碼
我選擇的是通過FileUpload控件進(jìn)行獲取靜態(tài)度頁面模型,進(jìn)行保存!
if (FileUpload1.PostedFile.FileName == "") { Response.Write(""); return; } if ((FileUpload1.FileName.LastIndexOf(".") != "htm") || (FileUpload1.FileName.LastIndexOf(".") != "html")) { Response.Write(""); return; } System.Text.Encoding ec = System.Text.Encoding. GetEncoding("gb2312");//指定編碼格式 System.IO.StreamReader sr = new System.IO.StreamReader (FileUpload1.PostedFile.FileName, ec); string strHTML =Convert.ToString(sr.ReadToEnd()); strHTML=FormatStr(strHTML); //格式化HTML代碼后, 將此strHTML插入數(shù)據(jù)庫 已便使用時(shí)候提取! sr.Close(); //貼上格式化HTML方法代碼 /// /// 格式 化 HTML /// /// /// private string FormatStr(string str) { string strContent = str.Replace("<", "<"); strContent = strContent.Replace(">", ">"); //strContent = strContent.Replace(chr(13)," "); strContent = strContent.Replace(" ", " "); strContent = strContent.Replace(" ", " "); strContent = strContent.Replace("[isOK]", " strContent = strContent.Replace("[red]", ""); strContent = strContent.Replace("[big]", ""); strContent = strContent.Replace("[/isOK]", ">"); strContent = strContent.Replace("[/b]", ""); strContent = strContent.Replace("[/red]", ""); strContent = strContent.Replace("[/big]", ""); return strContent; }
ASP.NET頁面靜態(tài)化第三步:提取先前保存過的HTML頁面模型
然后通過 string.Replace(char oldstring,char newstring );
對(duì)模型頁面中預(yù)先 設(shè)置好的特別標(biāo)記進(jìn)行替換成我們需要?jiǎng)討B(tài)更改的!
ASP.NET頁面靜態(tài)化第四步:對(duì)動(dòng)態(tài)更新后的HTML代碼進(jìn)行文件進(jìn)行保存 平把路徑存如數(shù)據(jù)庫方便調(diào)用!
關(guān)于ASP.NET中怎么實(shí)現(xiàn)頁面靜態(tài)化問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。