溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ASP.NET如何實現(xiàn)靜態(tài)頁面

發(fā)布時間:2021-07-15 10:43:24 來源:億速云 閱讀:179 作者:chen 欄目:編程語言

本篇內(nèi)容介紹了“ASP.NET如何實現(xiàn)靜態(tài)頁面”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

ASP.NET實現(xiàn)靜態(tài)頁面的方法是什么呢?首先讓我們看看ASP.NET的源碼實例:

﹤!--Main.Aspx--﹥   ﹤%@ page language="C#" %﹥   ﹤%@ import namespace=System.IO %﹥   ﹤script runat="server"﹥   protected override void OnInit (EventArgs e)   {     int id;     try     {     id = int.Parse (Request.QueryString["id"]);     }     catch     {     throw (new Exception ("頁面沒有指定id"));     }         string filename=Server.MapPath("statichtml_"+id+".html");         //嘗試讀取已有文件     Stream s = GetFileStream (filename);     if (s != null)//如果文件存在并且讀取成功     {     using (s)     {     Stream2Stream (s, Response.OutputStream);     Response.End ();     }     }             //調(diào)用Main_Execute,并且獲取其輸出     StringWriter sw = new StringWriter ();     Server.Execute ("Main_Execute.aspx", sw);         string content = sw.ToString ();         //輸出到客戶端     Response.Write(content);     Response.Flush();         //寫進(jìn)文件         try     {     using (FileStream fs = new FileStream (filename, FileMode.Create, FileAccess.Write, FileShare.Write))     {     using (StreamWriter streamwriter = new StreamWriter (fs, Response.ContentEncoding))     {     streamwriter.Write (content);     }     }     }     finally     {     //Response.End ();     }   }   static public void Stream2Stream (Stream src, Stream dst)   {     byte[] buf = new byte[4096];     while (true)     {     int c = src.Read (buf, 0, buf.Length);     if(c==0)     return;     dst.Write (buf, 0, c);     }   }   public Stream GetFileStream(string filename)   {     try     {     DateTime dt = File.GetLastWriteTime (filename);     TimeSpan ts=dt - DateTime.Now;     if(ts.TotalHours﹥1)     return null;  //1小時后過期     return new FileStream (filename, FileMode.Open, FileAccess.Read, FileShare.Read);     }     catch     {     return null;     }   }   ﹤/script﹥    ﹤!--Main_Execute.aspx--﹥   ﹤%@ page language="C#" %﹥   ﹤html﹥   ﹤head runat="server"﹥     ﹤title﹥Untitled Page﹤/title﹥   ﹤/head﹥   ﹤body﹥   ID:   ﹤%=Request.QueryString["id"]%﹥   ﹤/body﹥   ﹤/html﹥

其中ASP.NET實現(xiàn)靜態(tài)頁面的原理是這樣的。

Main_Execute.aspx是生成HTML的頁面。

現(xiàn)在用Main.aspx來對它進(jìn)行緩存.

ASP.NET實現(xiàn)靜態(tài)頁面過程如下:

首先根據(jù)頁面參數(shù)算出文件名。(這個例子只根據(jù)Request.QueryString["id"]來算)

嘗試讀取緩存的文件.如果成功,那么Response.End();

如果不成功:

使用Server.Execute來調(diào)用Main_Execute.aspx,并且獲取它的結(jié)果內(nèi)容。

得到內(nèi)容后,立刻輸出到客戶端。

***把內(nèi)容寫進(jìn)文件里,提供給下一次做為緩存度取。

“ASP.NET如何實現(xiàn)靜態(tài)頁面”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI