0

I have developed an application in asp.net mvc5 , I want to measure the total time taken by a request (time from after clicking the button till view loads completely )

Is it possible in MVC 5 , if yes than how ?

Currently I am referring below link which suggest using Application_BeginRequest and Application_EndRequest events in global file

link here

1 Answers1

0

Maybe some profiling tools such as MiniProfiler or Glimpse can help you profiling your application, including request times (as seen by the client).

Philipp Grathwohl
  • 2,726
  • 3
  • 27
  • 38
  • I found use of profiler very good in here , it show each and every file (css , js , images) loaded and their time too . Now I can see what is taking much time –  Jul 18 '17 at 04:16