top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the use of connectionStrings tag?

+1 vote
224 views
What is the use of connectionStrings tag?
posted Dec 3, 2014 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

is the most common section of web.config file which allows you to store multiple connection strings that are used in the application.
Code:

<connectionStrings>
    <add name ="ConString" connectionString ="Initial Catalog = abc;
        Data Source =localhost; Integrated Security = true"/>

</connectionStrings>
answer Dec 3, 2014 by Shivaranjini
...