i have one web application. index.aspx is my default page. so my problem is when my app starts for the first time it take 15sec to load the page. in my index.aspx has just simple static menu. when i put a break point in page_load it got hit after 15 sec. so its not my page but something else is causing this issue. may be pre compilation or loading dlls or something.
i really need help on this. i dont know where to look.
Thanks
Every time you rebuild your application the server has to recompile the code, but should be quicker after the first visit.
Additionally, using the debugger will degrade performance.
If you want to view the site locally with better performance overall you might want to setup a website in IIS, rather than using Visual Studio's built in web server.