程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> 在asp.net 2.0中的web.config文件中調用外部文件

在asp.net 2.0中的web.config文件中調用外部文件

編輯:關於ASP.NET

在一個工作項目或者工作小組中,有可能經常要轉換工作的調試環境,比如開發環境,測試環境,部署環境,這樣有可能要對web.config文件進行修改或改動,比如要改數據庫的連接字符串,角色配置,安全配置環境等,一不小心,很容易會發生遺漏等錯誤.在asp.net 2.0的web.config文件中,新加入了可以引入外部文件的新特性,

使到我們可以先預先搞好幾個文件,比如將經常要改動的部分,如數據庫連接串部分等,按不同的開發環境,分別寫成若干個xml文件,然後在web.config中把它們按需要調入進來.比如

我們先建立兩個目錄,一個叫test,一個叫developer,分別存放測試和開發時,用到的不同環境,比如

在devloper文件中建立一個developerconnectionstring.xml,內容如下

<connectionStrings>
<add name="connstr" connectionString="data source=.\sqlexpress;initial catalog=
northwind;integrated security=true"
providerName="System.Data.SqlClient"/>
</connectionStrings>

再建立一個developerappsetingstring.xml如下<appSettings>

<add key="autoemail" value="[email protected] /> </appSettings>

再建立一個developermembership.xml如下

<membership defaultProvider="Northwind">
<providers>
<add name="Northwind"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="connstr"/>
</providers>
</membership>

同樣道理,可以在test目錄下,也建立相關類似的xml文件,然後,在web.config中,可以這樣調用了

<?xml version="1.0"?>
<configuration>
<appSettings configSource="developer\developerappsetingstring.xml"/>
<connectionStrings
configSource="developer\developerconnectionstring.xml" />
<system.web>
<membership
configSource="developer\developermembership.xml"/>
<compilation debug="true"/>
<authentication mode="Forms"/>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</configuration>

可以看到,在web.config中,可以通過configsource屬性來讀取外部文件

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved