0

In my IIS Manager panel. I double click Application Settings, but it is empty. That means there is no key and value. However the web site can be running without problem.

I am not sure does it matter? Or I have to manual to add some key/value pairs. My application is deployed by Jenkins.

Love
  • 103
  • 1
  • 1
  • 4

1 Answers1

0

Maybe... because it depends on the application.

The app can read these "Application Settings", for example the developper can check if an app setting called "EnableDebug" has the value "true" and enable additional logging, etc...

It's a feature available to the developer, some use it, some don't. The benefit is that you can change settings without having to rebuild the app.

So, you should ask the developper if you want to be sure.

Swisstone
  • 6,357
  • 7
  • 21
  • 32
  • In asp.net core, we put setting in `appsetting.json` file. So perhaps we don't need it? – Love Aug 11 '20 at 15:19
  • That's another way to store app settings. If you use the IIS manager to add app settings, they will be stored in web.config – Swisstone Aug 11 '20 at 15:54
  • To be more specific, "Application Settings" in IIS Manager is strictly for ASP.NET and maps to `` tag https://docs.microsoft.com/en-us/dotnet/api/system.configuration.configurationmanager.appsettings?view=dotnet-plat-ext-3.1 – Lex Li Aug 11 '20 at 20:09