Asp – Will enabling a page-level trace in ASP.Net page recycle the application pool

asp.net

If I add "trace=true" into my directive on an asp.net 2.0 .aspx page, will it recycle my application pool?

I know if I enable tracing in web.config that will recycle the application pool.

The webserver is IIS 6.0.

Thanks.

Best Answer

I'm not 100% sure but it shouldn't. Any change to a web.config file would cause an app pool reset, but a page level change shouldn't even in the directive.

Check out the section "Why does an application domain recycle?" in this link

Technically if it's the 15th re-compile it could cause a reset... but other than that no.