我在asp.net中开发了一个web apllication,它的连接字符串在web.config文件中,并且在localhost中运行良好。但是,当我使用Windows共享托管部署到托管服务器时,错误
用户anama76的逻辑失败
其中anama76是我的域用户。我的数据库userName是anama_Muneeb。我发现很难知道为什么连接字符串使用域用户连接到Db。
我在web.config中使用了连接来进行sql server身份验证
解决方案是什么
答案 0 :(得分:0)
您的连接字符串必须与用户名匹配:
<add
name="ConnectionString"
connectionString="Data Source=your_database_server;Initial Catalog=your_database_name;User Id=anama_Muneeb;Password='your_password';"
providerName="System.Data.SqlClient"/>