asp.net mvc - How to Manipulate Application Pool Configurations in an MVC Application -


the configurations in question found here. example. set "startmode" configuration attribute "alwaysrunning" not sure or how accomplish mvc application. possible set configurations web.config file? , if yes, how?

i think cannot set web.config, , should done in server side's applicationhost.config, doing below: find applicationhost.config in windows/system32/inetsrv/config; locate , find application pool , add attribute: startmode="alwaysrunning" ex:

<add name="apppool1" autostart="true" startmode="alwaysrunning" /> 

Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -