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
Post a Comment