web應(yīng)用程序中的數(shù)據(jù)庫(kù)連接(1)
發(fā)表時(shí)間:2024-06-08 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
web.config文件是標(biāo)準(zhǔn)的xml文件,我們可以使用它來為一臺(tái)機(jī)器下的每一個(gè)web應(yīng)用程序或某個(gè)應(yīng)用程序或一個(gè)目錄下的asp.net頁(yè)面來進(jìn)行設(shè)置,當(dāng)然,它也可以為一個(gè)單獨(dú)的web頁(yè)面進(jìn)行設(shè)置。 如:網(wǎng)站的主目錄是\inetpub\wwwroot\,那么我們將web.config放置于其下,那么這個(gè)網(wǎng)站中的應(yīng)用程序?qū)⒈粀eb.config中的設(shè)置所影響。
e.g.:
<?xml version="1.0" encoding="gb2312" ?>
<configuration>
<system.web>
<compilation defaultlanguage="vb" debug="true" />
<customerrors mode="remoteonly" defaultredirect="js/error.htm">
<error statuscode="404" redirect="js/filenotfound.aspx" />
<error statuscode="500" redirect="js/error.htm" />
</customerrors>
<authentication mode="windows" />
<authorization>
<allow users="*" />
</authorization>
<httpruntime maxrequestlength="4000" usefullyqualifiedredirecturl="true" executiontimeout="45" />
<trace enabled="false" requestlimit="10" pageoutput="false" tracemode="sortbytime" localonly="true" />
<sessionstate mode="inproc" stateconnectionstring="tcpip=127.0.0.1:43444" cookieless="false" timeout="20" />
<globalization requestencoding="gb2312" responseencoding="gb2312" fileencoding="gb2312" />
</system.web>
<appsettings>
<add key="connstring" value="uid=flash;password=3.1415926;database=news;server=(local)" />
</appsettings>
</configuration>
這里我們討論一下如何在web.config中設(shè)置數(shù)據(jù)庫(kù)連接。
1、連接一個(gè)數(shù)據(jù)庫(kù):
在web.config中的<configuration>后加入
<appsettings>
<add key="connstring"
value="uid=flash;password=3.1415926;database=news;server=(local)" />
</appsettings>
在程序中,你可以使用以下代碼來使用web.config中的設(shè)置:
-----vb.net-----
imports system.configuration
dim myvar as string
myvar=configurationsettings.appsettings("connstring")
-----c#-----
using system.configuration;
string myvar;
myvar=configurationsettings.appsettings["connstring"];
2、連接多個(gè)數(shù)據(jù)庫(kù)
同理,那就是使用多個(gè)不同的key值來設(shè)置