在asp.net中有两个数据库的Web配置错误

时间:2013-04-25 14:26:13

标签: asp.net web-config

我开发了一个网站,我的网站上有两个数据库。 我在plesk面板中创建了两个数据库和用户并上传备份, 数据库的第一个名称是database_Journal,数据库名称2是database_General,用户也是UserID1和UserID。 但它有一些问题,它给了我这个错误:

  

建立与SQL Server的连接时发生与网络相关或特定于实例的错误。找不到服务器或   无法访问。验证实例名称是否正确   SQL Server配置为允许远程连接。 (提供者:命名   管道提供程序,错误:40 - 无法打开与SQL Server的连接)

我的网络配置是这样的:

 <add name="dbconn" connectionString="Password==******;; Persist Security Info=True;User ID=UserID1; Initial Catalog=database_General; Data Source=***.**.**.**" providerName="System.Data.SqlClient" />

    <remove name="LocalSqlServer"/>

    <add name="LocalSqlServer" connectionString="Password=******;Persist Security Info=True;User ID=UserID1; Initial Catalog=database_General; Data Source=***.**.**.**" providerName="System.Data.SqlClient" />

    <add name="dbconn_general" connectionString="Password==******;; Persist Security Info=True;User ID=UserID; Initial Catalog=database_Journal; Data Source=***.**.**.**" providerName="System.Data.SqlClient" />

1 个答案:

答案 0 :(得分:0)

试试这种格式...

<add name="dbconn" connectionString="server=YourServerNameOrServerIpAddress; database=database_General; uid=UserID1; Password=******" providerName="System.Data.SqlClient" />