After reading about the differences between appSettings and applicationSettings in the web.config file, I would prefer to use the applicationSettings section and use strongly typed settings. But with the appSettings section, you could have a separate section in another file and just reference it on web.config using the 'file =' attribute in the section like this .
I would like to leave my application settings separate from the web.config file so that when the user changes any parameters, the application does not restart automatically.
Is there a similar way to achieve this using the new applicationSettings section and using strongly typed settings?
source
share