0

我已经在 IIS 7.5 中启动了我的站点。站点中存在一个问题,我试图解决它。在进行更改后,我构建了解决方案并尝试在站点中签出。当时我得到了一个异常详细信息

System.Data.SqlClient.SqlException:用户“sa”登录失败”

这是源错误

Line 25:        /// <param name="dataTable"><see>System.Data.DataTalbe</see> a rellenar</param>
Line 26:         public void FillTable(System.Data.DataTable dataTable) 
                 { 
                     this.Adapter.SelectCommand = this.CommandCollection[0];       
                      this.Adapter.Fill(dataTable);
                 }

谁能帮我解决问题?

4

2 回答 2

8

For starters, don't run your solution using the sa account!

Create an account with the permissions your app requires, and use that. Put the connection string in the ConnectionStrings section of web.config

于 2012-08-21T09:43:55.017 回答
0

保持Trusted_Connection=True解决了我在连接字符串中的问题

于 2019-08-29T12:00:42.710 回答