Asp.net Method for Calculating the execution time of each page, asp.net page

Source: Internet
Author: User

Asp.net Method for Calculating the execution time of each page, asp.net page

This example describes how to calculate the execution time of each page in asp.net. Share it with you for your reference. The specific analysis is as follows:

The asp.net code can calculate the execution time of each page without modifying the code of the page. This code will display the execution time of all pages.

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 */ }}

I hope this article will help you design your asp.net program.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.