- 我有一个访问 app.config 中配置的数据库的库项目
- 我有一个访问 web.config 中配置的数据库的 Web 项目
两者都正常工作
现在我想使用 web 项目中的库。在 Visual Studio 中工作正常。在生产服务器中,Web 项目访问数据库,但库不能从项目 Web 访问数据库。
app.config 和 web.config 中的 ConnectionString 是相同的。在生产服务器中不应该采用 web.config 设置吗?
谢谢和对不起我的英语
编辑
web.config 和 app.config 连接字符串
<connectionStrings>
<add name="IntranetConnectionString"
connectionString="Data Source=(local)\SQLExpress;Initial Catalog=Intranet;Integrated Security=True;"
providerName="System.Data.SqlClient" />
<add name="Database.Properties.Settings.IntranetConnectionString"
connectionString="Data Source=(local)\SQLEXPRESS;Initial Catalog=Intranet;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
错误:
建立与 SQL Server 的连接时发生与网络相关或特定于实例的错误。服务器未找到或无法访问。验证实例名称是否正确以及 SQL Server 是否配置为允许远程连接。(提供者:SQL 网络接口,错误:26 - 错误定位服务器/指定的实例)