views:

38

answers:

2

One of my ASP.NET webpage is taking more time to load and I want to optimize its performance. During debugging, I am not able to find where it is taking more time. It looks all fine. Is there any special way or any option with Visual Studio 2008 for performance tuning?

+2  A: 

Debugging might be slow. If you find out that your application is slow while running in Release mode then there might be a problem with your application that you will need to pinpoint. You could read on how to improve the performance of your ASP.NET application and 10 tips for writing high performance web applications. You could also use a profiler.

Darin Dimitrov
+2  A: 

You can use YSlow to analyze client side for potential problems and Performance testing tool for code analysis on .NET applications for server side problems.

Giorgi