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

php - Extract Text from HTTP referer -

Receive udp packets in android gstreamer -

authentication - ASP.NET Core 1.0. Bearer Token, cannot access custom claims -