About 50 results
Open links in new tab
  1. Access Web.config settings in Asp.Net Core App?

    Oct 22, 2016 · So the way to utilize the ConfigurationManager in an asp.net core web application that targets the full framework is to put the application setting in the app.config file rather than the …

  2. asp.net - Web.Config files and locations - Stack Overflow

    Feb 22, 2012 · I have not encountered a way to have inherited config files besides machine.config, app/web.config and user.config levels. But you can use configSource attribute on all config sections …

  3. Using different Web.config in development and production environment

    The application reads settings from Web.config file via WebConfigurationManager.AppSettings property. I use Build/Publish command to deploy the application to production server via FTP and then …

  4. c# - Understanding ASP.NET Web.config transformations - Web.Debug ...

    Oct 17, 2018 · Web.config transformations are associated with Publishing your project in a given configuration. When you debug in Visual Studio, it always uses the plain web.config file, no matter …

  5. Web App Configuration Settings - Best Practices - Stack Overflow

    Dec 7, 2010 · I was recently involved with patching a web app project and noticed the previous developer used database table for configuration settings instead of web.config (app.settings). Which …

  6. Differences in behavior between System.Web.Configuration ...

    Jul 30, 2013 · Intentions of Each Manager System.Configuration. ConfigurationManager can access the .NET configuration XML format which means it reads both: web configurations (i.e. web.config file in …

  7. What's the difference between the WebConfigurationManager and the ...

    WebConfigurationManger knows how to deal with configuration inheritance within a web application. As you know, there could be several web.config files in one applicaion - one in the root of the site and …

  8. Change a web.config programmatically with C# (.NET)

    98 How can I modify / manipulate the web.config programmatically with C# ? Can I use a configuration object, and, if yes, how can I load the web.config into a configuration object ? I would like to have a …

  9. asp.net - How to open web.config - Stack Overflow

    Nov 21, 2012 · I'm using following code to open the web.config of my current web application.

  10. .NET Configuration (app.config/web.config/settings.settings)

    What about a situation where you don't control the web server and therefore can't change machine-level config? Examples include a 3rd-party web server or a web server shared amongst multiple …