ASP.NET going VERY slowly on my server...

windows

Guest
I have installed ASP.NET onto my web server using Windows Server 2003 R2. When I create an ASP page, it loads at the proper speed (less than a second usually), but when I create an .aspx, it takes around 10 seconds for the browser to even start loading the webpage. This might be understandable if I were somewhere else, but even when I'm local it loads slowly. What's the deal? Thanks in advance!.net pages need to compile before it can shows as a html stream. compile programs take time.

Normally when you first time request the page will takes a while, from the second time on, when you request the same page again, it will be as fast as legacy asp pages.

Also if you are using VS.net, you may wanna change Debug mode to Release when your application is ready to launch, that'll speed things up a little.

Hope that helps.
 
Back
Top