Reputation: 18127
Is it possible to disable IIS7 Pool recycling from ASP.NET application using web.config file?
Upvotes: 1
Views: 2063
Reputation: 49245
AFAIK, it's not possible. True - it (Application Pool Recycling) can be controlled using configuration file but not at the application level but only at server level using ApplicationHost.config - see the documentation.
Controlling at application level does not make sense because a single application pool may support multiple web applications (and hence there could be conflicting configuration).
Upvotes: 1