asp.net 通過httpModule計算頁面的執行時間

來源:互聯網
上載者:User

建立一個類庫,建立如下類: 複製代碼 代碼如下:using System;
using System.Collections.Generic;
using System.Web;//引用web命名空間
using System.Text;
namespace TimerHttpModule
{
public class Class1:IHttpModule//繼承IHttpModules
{
public void Init(HttpApplication application)//實現IHttpModules中的Init事件
{
//訂閱兩個事件
application.BeginRequest +=new EventHandler(application_BeginRequest);
application.EndRequest+=new EventHandler(application_EndRequest);
}
private DateTime starttime;
private void application_BeginRequest(object sender, EventArgs e)
{
//object sender是BeginRequest傳遞過來的對象
//裡面儲存的就是HttpApplication執行個體
//HttpApplication執行個體裡包含HttpContext屬性
starttime = DateTime.Now;
}
private void application_EndRequest(object sender, EventArgs e)
{
DateTime endtime = DateTime.Now;
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;
context.Response.Write("<p>頁面執行時間:" + (endtime - starttime).ToString() + "</p>");
}
//必須實現dispose介面
public void Dispose() { }
}
}

產生後將dll檔案copy到bin目錄,接著在web.config中註冊這個HttpModule: 複製代碼 代碼如下:<configuration>
<system.web>
<httpModules>
<add name="TimerHttpModule" type="TimerHttpModule.Class1"/>
</httpModules>
</system.web>
</configuration>

這樣網站的每一個.net頁面底部都會顯示頁面的執行時間了。
不過這樣做要小心,因為每個.net頁面末尾都會被加上執行時間,包括webservices和ashx頁面,以及你可能不是用來直接做頁面的.aspx頁面(例如你用來輸入json資料或者xml資料)。所以,為了保證安全,還必須採取有針對性的方法來避免這種情況的發生。
方法一:在Response.Write方法之前做判斷,排除一些不想添加執行時間的頁面,可以通過Request.URL來判斷;
方法二:不要把執行時間直接添加到頁面輸出的尾端,而是作為一個http header輸出。使用Response.AddHeader(key,value)可以實現這個願望。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.