Types of configuration files and their differences ?
Answer Posted / narayansahu
app.config-> contains application specific settings
web.config
Web.config is a security in ASP.Net application and how to
secure applications. Web.config does most of the work for
the application the who, what, where, when and how to be
authenticated.
1.This is automatically created when you create an ASP.Net
web application project.
2.This is also called application level configuration file.
3.This file inherits setting from the machine.config
Machine.config contains settings that apply to an entire
computer. This file is located in the %runtime install path%
\Config directory. Machine.config contains configuration
settings for machine-wide assembly binding, built-in
remoting channels.
1.This is automatically installed when you install Visual
Studio. Net.
2.This is also called machine level configuration file.
3.Only one machine.config file exists on a server.
4.This file is at the highest level in the configuration
hierarchy.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What are the server control tags in asp.net.?
What is the difference between equals() and == in c#?
How do I upload a file from my ASP.NET page?
What is rending process in ASP.NET?
Where the cookie value is stored?
What is the difference between sealed vs static class?
Explain managed code an un-managed code.
Which validator control you use if you need to make sure the values in two different controls matched?
In ViewState How much lifespan items stored?
How to include silver light .xap page into asp.net web application and what is the purpose of using silverlight application?
What is custom attribute? How to create?
What is the adavantage of using ASP.NET routing?
What is enableviewstatemac in asp net?
What is the difference between mechine.config and web.config?
What is a query string in a url?