What is the difference between storing and reading your application's connection string in the <appSettings> and <connectionStrings> sections of web.config?
|
|
||||
|
|
|
.NET gives built-in support for managing a connection string along with a provider if specified in the Also, built-in membership and role providers depend on the connection string being present in the proper section. |
|||
|
|
The
To read an app setting value, you can do this:
|
||||
|
|
|
|
|||
|
|
Connection string encryptionConnection string section is meant to be used for connection strings because some parts of asp.net framework uses them. But even better than that is the built-in support for encrypting these connections and things will keep working. If you'd try to do the contrary and encrypt connection string in
.Net provides both out of the box. |
|||
|
|
|
Values stored in the |
|||
|
|
|
In the documentation: The connectionStrings element specifies a collection of database connection strings, as name/value pairs, for ASP.NET applications and features. In previous versions of ASP.NET, connection strings were stored in the appSettings. In ASP.NET 2.0, features, such as Session, Membership, Personalization, and Role Manager, rely on connection strings that are stored in the connectionStrings element. You can also use the connectionStrings element to store connection strings for your own applications. So basically, appsettings is for custom and the connectionstrings are used by the framework itself on some occasions. |
|||
|
|
