batch compilation

  • Thread starter Thread starter Wei
  • Start date Start date
W

Wei

Hello,

How to turn on "batch compilation" of ASP.NET application ?

Though by default I think the asp pipeline should compile
in batch mode, yet I set
<compilation defaultLanguage="vb" debug="false"
strict="false"
explicit="true" batch="true" batchTimeout="120"
maxBatchSize="9999"
maxBatchGeneratedFileSize="9999"
numRecompilesBeforeAppRestart="15" />

in the web.config or machine.config , but it still doesn't
work.
I get delays for each page first time accessed
and separete dll's are generated in "Temporary ASP.NET
Files" folder for each page.

Any one know why this happens? Am I wrong?

Thanks,

Wei
 
-----Original Message-----
Hello,

How to turn on "batch compilation" of ASP.NET application ?

Though by default I think the asp pipeline should compile
in batch mode, yet I set
<compilation defaultLanguage="vb" debug="false"
strict="false"
explicit="true" batch="true" batchTimeout="120"
maxBatchSize="9999"
maxBatchGeneratedFileSize="9999"
numRecompilesBeforeAppRestart="15" />

in the web.config or machine.config , but it still doesn't
work.
I get delays for each page first time accessed
and separete dll's are generated in "Temporary ASP.NET
Files" folder for each page.

Any one know why this happens? Am I wrong?

Thanks,

Wei
.

Though I am using C# which is different from the one set
for the compilation attribute(vb), yet I don't think this
is the issue.
 
Back
Top