ASP.Net page methods execution time monitoring. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:47:57Z http://stackoverflow.com/feeds/question/858847 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/858847/asp-net-page-methods-execution-time-monitoring 0 ASP.Net page methods execution time monitoring. igor 2009-05-13T16:06:14Z 2009-10-22T09:00:02Z <p>could anybody advice me, are there any approaches to calculate the methods execution time in asp.net page?</p> <p>ASP.Net Trace doesn't suit me since it ignores ajax partial postbacks though just they are the tight place.</p> <p>I have the page event which for some unknown reason executes slowly. Since the logic and event execution chain is rather complicated, I still unable to merely determine the culprit in debugger.</p> <p>I'd like to measure the execution time of each method throughout the page, but I still see no way but insert redundant code lines (like timeBegin = DateTime.Now.... timeEnd=DateTime.Now = timeBegin etc) in the beginning and ending of each method. It seems to be ugly approach, does anybody know how to do it automatically? Are there tools which measure the methods execution time available?</p> http://stackoverflow.com/questions/858847/asp-net-page-methods-execution-time-monitoring/858958#858958 0 Answer by hacker for ASP.Net page methods execution time monitoring. hacker 2009-05-13T16:25:55Z 2009-05-13T16:25:55Z <p>This may not be what you are looking for, but <a href="http://www.red-gate.com/products/ants%5Fprofiler/index.htm" rel="nofollow">RedGate</a> has a product called Performance Profiler that does exactly that. They do have a 15 day trial so you can even download it and try it out on your current issue. IMHO, it's worth every penny.</p> http://stackoverflow.com/questions/858847/asp-net-page-methods-execution-time-monitoring/859991#859991 0 Answer by Jalpesh P. Vadgama for ASP.Net page methods execution time monitoring. Jalpesh P. Vadgama 2009-05-13T19:39:19Z 2009-05-13T19:39:19Z <p>You can use asp.net performance counters and other things also. But that will not measure a page speed but they will measure a over all application performance.</p>