In webconfig, set the connection string using appsettings)

Source: Internet
Author: User

The key value defined in The <etettings> element in Web. config can be used by the aspz file in all subfolders to modify data of multiple aspx files.

Take database connection as an example:
1,
In web. config
...
</System. Web>
<Deleetask>
<Add key = "nwind"
Value = "Server = (local) \ netsdk; database = northwind; Integrated Security = true;"/>
</Appsettings>
</Configuration>

Reference it in the aspx file:
String strconn = configurationsettings. receivettings ["nwind"];

2,
You can use the following methods to obtain the physical path of the database in the real directory of the remote host. Assume that the domain name address for uploading a remote space is as follows:

Http://www.pconline.com.cn/dkblog

3,
The relative path of server. mappath is used for Asp.net programming.
Think of a simple solution:
In web. config
<Deleetask>
<Add key = "accpath" value = "provider = Microsoft. Jet. oledb.4.0; Data Source ="/>
<Add key = "accname" value = "account. mdb"/>
</Appsettings>

In aspx
String strpath = configurationsettings. receivettings ["accpath"];
String strname = configurationsettings. receivettings ["accname"];
String strconn = strpath + server. mappath (strname );

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.