当我想通过本地网络连接到我的站点数据库时,将显示以下消息:
无法登录my_server_name / AspNet
我的连接字符串是:
<connectionStrings>
<add name="behbahan_cementConnectionString" connectionString="Data Source=MAYA-1307F9F334\SQLEXPRESS;Initial Catalog=behbahan_cement;Integrated Security=True" providerName="System.Data.SqlClient"/>
</connectionStrings>`
我无法连接数据库?
答案 0 :(得分:1)
我建议您首先尝试确定是否可以通过SQL Server Management Studio或使用.UDL文件从Web应用程序外部连接到数据库。我已经回答了有关测试SQL服务器连接here的问题。
根据这些测试的结果,您可能会发现问题可能是什么。在您的情况下,您正在使用集成安全性(您需要在域上通过网络使用)。如果您不在域中,则可能需要提供用户名和密码。
答案 1 :(得分:-2)
将数据库连接为标准方式;
<connectionStrings>
<add
name="NorthwindConnectionString"
connectionString="Data Source=serverName;Initial
Catalog=Northwind;Persist Security Info=True;User
ID=userName;Password=password"
providerName="System.Data.SqlClient"
/>
</connectionStrings>
我在这里看到的是你在搞乱;
ID=userName;Password=password"
在connectionString中连接数据库。默认用户名和密码应为“root”,除非您更改了它。 尝试连接此详细信息。 谢谢,