在web.config中批量调试属性

在web.config中批量调试属性

问题描述:

谁能告诉我究竟是什么在web.config中(属性)批量调试选项呢?我可以告诉它调试分批(> 1),但我再也找不到此设置的背景信息。

Can anyone tell me what exactly the batch debug option in web.config (attribute) does? I can tell it debugs in batches ( >1) but I cannot find anymore background info on this setting.

感谢

://msdn.microsoft.com/en-us/library/s10awwz0.aspx

from http://msdn.microsoft.com/en-us/library/s10awwz0.aspx

可选的布尔属性。

表示配料是否支持。

如果真,消除由当你访问一个文件首次需要编译的延迟。当此属性在批处理模式下,这会导致更长的延迟第一次文件被编译设置为True,ASP.NET precompiles所有未编译的文件。然而,该初始延迟之后,编译延迟被消除上的文件的后续访问。

If True, eliminates the delay caused by the compilation required when you access a file for the first time. When this attribute is set to True, ASP.NET precompiles all the uncompiled files in a batch mode, which causes an even longer delay the first time the files are compiled. However, after this initial delay, the compilation delay is eliminated on subsequent access of the file.

默认为真。