.net 计算页面的执行时间

作者:互联网   出处:控件中国网   2014-11-05 19:05:13   阅读:1

.net 计算页面的执行时间
 
使用IHttpHandler来实现对页面执行时间的统计:

IHttpHandler:用处理请求的接口,可以在web.config下的HttpHandler中设置对应哪种请求类型(GET/POST),请求所在的路径(Path),请求的扩展名(verb)

<add verb="*" path="*.*" type="xx.t" />

IRequiresSessionState:你要使用Session就要继承这个接口

namespace xx{

public class t: IHttpHandler, IRequiresSessionState
  {
    public void ProcessRequest(HttpContext context)
    {
      string rawUrl = context.Request.RawUrl;
      DateTime startTime = DateTime.Now;      
      string aspxPagePath = rawUrl.Substring(0, rawUrl.IndexOf(".aspx") + 5);
      IHttpHandler handler = PageParser.GetCompiledPageInstance(aspxPagePath, null, context);//执行请求的页面
      // Process the page just like any other aspx page
      handler.ProcessRequest(context);
      TimeSpan duration = DateTime.Now - startTime;
      context.Response.Write(String.Format("Request finshed. Total duration: {0} ms.",
        duration.Milliseconds));
    }
  
    /// <summary>
    ///
    /// </summary>
    public bool IsReusable
    {
      get { return true; }
    }
    #endregion
  }
}

}

 

Copyright© 2006-2015 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 渝ICP备12000264号 法律顾问:元炳律师事务所
客服软件
live chat