How can I disable precompilation in IIS?

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?

+5
source share
1 answer

Web.config

<compilation batch="false" />

, . True, , , . "", ASP.NET , . . - True.

https://msdn.microsoft.com/library/s10awwz0.aspx

IIS 7

IIS , . IIS . " IIS (IIS 7)". . IIS (IIS 7).

"" " .NET".

.NET .

"" "".

http://technet.microsoft.com/en-us/library/cc725812(v=ws.10).aspx

+6

All Articles