主页 > 知识库 > asp.net计算每个页面执行时间的方法

asp.net计算每个页面执行时间的方法

热门标签:客户服务 国美全国运营中心 电销业务 人工智能 电商新玩法 百度AI接口 科大讯飞语音识别系统 网站排名优化

本文实例讲述了asp.net计算每个页面执行时间的方法。分享给大家供大家参考。具体分析如下:

这里的asp.net代码可实现计算每个页面的执行时间,无需要修改页面的相关代码,这段代码会给所有的页面统一加上执行时间显示

public class PerformanceMonitorModule : IHttpModule
{
 public void Init(HttpApplication context)
 {
  context.PreRequestHandlerExecute += delegate(object sender,EventArgs e)
  {
   //Set Page Timer Star
   HttpContext requestContext = ((HttpApplication)sender).Context;
   Stopwatch timer = new Stopwatch();
   requestContext.Items["Timer"] = timer;
   timer.Start();
   };
  context.PostRequestHandlerExecute += delegate(object sender, EventArgs e)
  {
   HttpContext httpContext = ((HttpApplication)sender).Context;
   HttpResponse response = httpContext.Response;
   Stopwatch timer = (Stopwatch)httpContext.Items["Timer"];
   timer.Stop();
   // Don't interfere with non-HTML responses
   if (response.ContentType == "text/html")
   {
    double seconds = (double)timer.ElapsedTicks / Stopwatch.Frequency;
    string result_time = string.Format("{0:F4} sec ", seconds);
    RenderQueriesToResponse(response,result_time);
   }
  };
 }
 void RenderQueriesToResponse(HttpResponse response, string result_time)
 {
  response.Write("div style=\"margin: 5px; background-color: #FFFF00\"");
  response.Write(string.Format("b>Page Generated in "+ result_time));
  response.Write("/div>");
 }
 public void Dispose() { /* Not needed */ }
}

希望本文所述对大家的asp.net程序设计有所帮助。

您可能感兴趣的文章:
  • ASP.NET笔记之页面跳转、调试、form表单、viewstate、cookie的使用说明
  • ASP.net实现页面跳转的方法
  • ASP.NET 页面中加添加用户控件的写法
  • 三步将Asp.Net页面输出到EXCEL里
  • 设置ASP.NET页面的运行超时时间详细到单个页面及站点
  • asp.net截屏功能实现截取web页面
  • ASP.Net页面生成饼图实例
  • 三种asp.net页面跳转的方法

标签:南平 益阳 咸宁 厦门 枣庄 攀枝花 拉萨 POS机

巨人网络通讯声明:本文标题《asp.net计算每个页面执行时间的方法》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266