开发者

Asp.Net 4.0 Profiling on IIS7

开发者 https://www.devze.com 2023-01-18 11:45 出处:网络
New to both Asp.Net 4.0 and IIS7 deployment. I am having a runtime problem with my application. Basically certain pages are not loading, also looks like a memory issue related to certain calls etc.

New to both Asp.Net 4.0 and IIS7 deployment.

I am having a runtime problem with my application. Basically certain pages are not loading, also looks like a memory issue related to certain calls etc.

What are some of the tools and techniques for profiling/debugging Asp.net 4.0 when deployed on iis7. I 开发者_如何学编程am just looking for a way to get the BIG picture and the drill down to smaller level.

Is it suggested that any profiling of value take place in VS2010?


You can use iis7 failed request logs to track which handler is causing pages to fail out. Using this approach, you can narrow down where the issue is happening, and then use asp.net page level tracking and exception stack traces in your event log to solve the problem. Also, good logging in your global.asax application_error method is always recommended.

0

精彩评论

暂无评论...
验证码 换一张
取 消