我在我的 Web.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?
Ps 我不能使用clear/
,因为它删除了到 Membership 提供程序的 Machine.Config 数据库连接字符串,也会引发不同的错误