ConnectionString in ASP.Net
What is the difference in writting ConnectionString as part of section and in section in Web.Config?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Khan Abrar AhmedPosted May 13, 2014, 9:17 AM
http://www.connectionstrings.com/store-connection-string-in-webconfig/
Lakshmanan Sethu SankaranarayanPosted May 13, 2014, 9:15 AM
Abhishek JaiswalPosted May 13, 2014, 9:15 AM
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.
for more info go through this
http://msdn.microsoft.com/en-us/library/ms254494(v=vs.110).aspx
:)