I have a web application with master page(.master) and many content pages(.aspx). All the .aspx(content pages) pages are placed in different folders.
When i access the web application for the first time, for loading the default page(Home page) its taking time, this is expected as the server tries to compile and load the pages for the first time(correct me if i am wrong).
Once the default home page is loaded then when i tried to navigate to other aspx pages, it is still taking time to load. Why do this happen, the pages are already compiled when home page is loaded.
Do the server compile only the files in root folder while processing the first request?
When a user requests for a particular page which is placed in a folder, are all other pages with in the folder are compiled as well?
Thanks, Kris