I try to avoid compiling errors blocking the entire ASP site during development. That is, I want each page to be compiled on first launch instead of the entire site, so that compilation errors do not appear globally. This can be annoying when a developer leaves for lunch after saving with a systax sigh.
I tried adding this to the old web configurator (modified from the default value of "Always"):
<pages compilationMode="Auto" controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
This did not have the desired effect. What can I change in webconfig or using IIS to disable precompilation?
source
share