1
刪除的ConnectionStrings節點
我有這個在我的web.config讓我的服務將在本地運行:的Web.config從Web.Release.Config
<connectionStrings>
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=IPADD;Initial Catalog=DB;Persist Security Info=True;User ID=UN;Password=PW" />
</connectionStrings>
我需要這個,因爲這裏的Web.Debug.Config沒有按沒有工作。所以,當我公佈我想刪除這個字符串,因爲它實際上是從父的Web.config
<connectionStrings>
<remove name="DefaultConnection"/>
</connectionStrings>
這似乎並不工作繼承......(它拋出一個The entry 'DefaultConnection' has already been added.
錯誤)
如何我可以刪除它嗎? XSLT?
P.s.我不能使用clear/
,因爲它消除在Machine.config DB連接字符串的成員提供者還拋出不同的錯誤