Scope of Web.Config

  • Thread starter Thread starter Arsalan
  • Start date Start date
A

Arsalan

What is the scope of Web.Config file ? Can I have multiple web.config file
in a project ? in case of multiple Web.Config file in a project, which one
will be accessed?
 
Hello Arsalan,

You can have multiple web.config files in one project. Obviously, only one
per folder. The one in each folder will inherit the properties from the parent
and override any of the properties that you set.
 
Back
Top