ASP.Net page methods execution time monitoring. - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T07:47:57Zhttp://stackoverflow.com/feeds/question/858847http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/858847/asp-net-page-methods-execution-time-monitoring0ASP.Net page methods execution time monitoring.igor2009-05-13T16:06:14Z2009-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#8589580Answer by hacker for ASP.Net page methods execution time monitoring.hacker2009-05-13T16:25:55Z2009-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#8599910Answer by Jalpesh P. Vadgama for ASP.Net page methods execution time monitoring.Jalpesh P. Vadgama2009-05-13T19:39:19Z2009-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>