• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp.net计算每个页面执行时间的方法

    本文实例讲述了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页面跳转的方法
    上一篇:asp.net动态加载自定义控件的方法
    下一篇:ASP.NET实现基于Forms认证的WebService应用实例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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