C # referencing ConnectionString in Web. config

Source: Internet
Author: User
Tags connectionstrings

C # referencing connectionstring in Web. config

<connectionStrings>
<add name= "jkxtconnectionstring" connectionstring= "Data source=chf;initial catalog=jkxt; User id=sa"providername=" System.Data.SqlClient "/>
<add name= "jgxtconnectionstring" connectionstring= "Data source=chf;initial catalog=jgxt; User Id=sa "providername=" System.Data.SqlClient "/>
</connectionStrings>

<connectionStrings>
<add name= "db_emsconnectionstring" connectionstring= "Data source=85ddbbbfa5a34f9;initial Catalog=DB_EMS; Integrated security=true " providername=" System.Data.SqlClient "/>

</connectionStrings>


The way to get it is:
configurationmanager.connectionstrings["Jgxtconnectionstring"]. ConnectionString;

or so write Web. config
<appSettings>
<add key= "ConnectionString" value= "Data source=chf;initial catalog=jgxt; User Id=sa "/>
</appSettings>

<appSettings>

<add key= "Dbhelperprovider" value= "System.Data.SqlClient"/>

<add key= "dbhelperconnectionstring" value= "Data source=85ddbbbfa5a34f9;initial catalog=db_ems; Integrated security=true"/>

</appSettings>


The methods to obtain this are:
configurationsettings.appsettings["Jgxtconnectionstring"];

Reference using System.Configuration;

C # referencing ConnectionString in Web. config

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.