连接SQL SERVER出错,郁闷几天了

时间:2021-06-09 14:10:40
我的SQL是采用windows认证登陆的。。NET2003

在写winform程序可以连接没问题 写WEB程序却连不上。测试连接也可以 就是运行时报错,错误信息:   高手给点指点!





“/WebApplication1”应用程序中的服务器错误。
--------------------------------------------------------------------------------

用户 'NT AUTHORITY\NETWORK SERVICE' 登录失败。 
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 

异常详细信息: System.Data.SqlClient.SqlException: 用户 'NT AUTHORITY\NETWORK SERVICE' 登录失败。

源错误: 


行 55:  private void Button1_Click(object sender, System.EventArgs e)
行 56:  {
行 57:  sqlConnection1.Open();
行 58: 
行 59:  }
 

源文件: c:\inetpub\wwwroot\webapplication1\webform1.aspx.cs    行: 57 

堆栈跟踪: 


[SqlException: 用户 'NT AUTHORITY\NETWORK SERVICE' 登录失败。]
   System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction)
   System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction)
   System.Data.SqlClient.SqlConnection.Open()
   WebApplication1.WebForm1.Button1_Click(Object sender, EventArgs e) in c:\inetpub\wwwroot\webapplication1\webform1.aspx.cs:57
   System.Web.UI.WebControls.Button.OnClick(EventArgs e)
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
   System.Web.UI.Page.ProcessRequestMain()

 

9 个解决方案

#1


改用SQL用户验证!

#2


把连接字符串贴出来

#3


可能没有填写密码。
自己在
ConnectionString中加上password=xxxxxxx;

#4


要有代码,
要不试试,在企业管理器中右击属性,安全性中选中:sql 和 windows验证.

#5


把你的连库语句等出来看一下

#6


权限不够,你用的是混合模式登陆,改成SQL验证。

#7


我的连接串是这样的:
workstation id=WENDC;packet size=4096;integrated security=SSPI;data source=wendc;persist security info=False;initial catalog=card

#8


把integrated security=SSPI和persist security info=False去掉

#9


把登陆模式改为SQL验证

#1


改用SQL用户验证!

#2


把连接字符串贴出来

#3


可能没有填写密码。
自己在
ConnectionString中加上password=xxxxxxx;

#4


要有代码,
要不试试,在企业管理器中右击属性,安全性中选中:sql 和 windows验证.

#5


把你的连库语句等出来看一下

#6


权限不够,你用的是混合模式登陆,改成SQL验证。

#7


我的连接串是这样的:
workstation id=WENDC;packet size=4096;integrated security=SSPI;data source=wendc;persist security info=False;initial catalog=card

#8


把integrated security=SSPI和persist security info=False去掉

#9


把登陆模式改为SQL验证