web.config file in Asp.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shivambhatele
    New Member
    • May 2020
    • 9

    web.config file in Asp.net

    Hello Everyone, Can anyone explain to me what is the web.config file and what is used for? Actually, I am preparing some topics for the asp.net interview and I have doubts regarding this. If anyone knows please explain me.
  • rohanjoshi0894
    New Member
    • May 2020
    • 4

    #2
    ASP.net Interview Questions

    A web.config file is a Windows file that lets you customize the way your site or a specific directory on your site behaves. For example, if you place a web. config file in your root directory, it will affect your entire site (www.coolexample.com). ... config files are XML documents that work on Windows servers.

    This file is typically found in the C:\WINDOWS\Micr osoft.NET\Frame work\v2. 0.50727\CONFIG directory. The Machine. config file contains settings for all sites running on the machine provided another.

    Comment

    • AjayGohil
      New Member
      • Apr 2019
      • 83

      #3
      Hello,

      config file is a xml based configuration file used in ASP.NET based application to manage various settings that concerned with configuration of our website.ASP.NET Configuration system is used to describe the properties and behaviors of various aspects of ASP.NET applications. Configuration files help you to manage the many settings related to your website. Each file is an XML file (with the extension .config) that contains a set of configuration elements. Configuration information is stored in XML-based text files.

      For More Info refer following site:

      Configuration file is an important file in ASP.NET. Learn, what is a Web.Config file? What is in Web.config files? What are the different types of Configuration files in ASP.NET? Machine.config File vs Web.config file.

      Comment

      Working...