Hi friends,
Would you like to tell me that what is the Pre-Compilation feature in asp.net 2.0?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Nov 19, 2011, 1:51 AM
It is a process where things that can be handled before compilation are prepared in order to reduce the deployment time, response time, increase safety. It's main aim to boost performance.
It also helps in informing about the compilation failures.
During development, it allows you to make changes to the web pages and reuse it using the same web browser to validate the changes without compiling the entire website.
During deployment, it generates the entire website folder structure in the destination. All the static files are copied to the folder and bin directory would later on contain the compiled dll.
Refer the below
http://aspalliance.com/717
Thanks