不能访问数据库
请问各位高手怎么解决啊?帮帮小妹一个忙吧!!!我编写一个信息管理系统的登录界面,调试的时候出现如下错误:(Web.config文件中已添加<add key="dsn" value="Data Source=localhost;UID=MY-TOMATO\ASPNET;PWD=;DATABASE=HMS"/>)
“/HMS”应用程序中的服务器错误。
SQL Server 不存在或访问被拒绝。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: SQL Server 不存在或访问被拒绝。
源错误:
行 127: string strconn = ConfigurationSettings.AppSettings["dsn"];
行 128: SqlConnection cn = new SqlConnection(strconn);
行 129: cn.Open();
行 130: string mysql = "select * from Users where UID="+tbx_uid.Text+"and UPassword="+tbx_upassword.Text+"";
行 131: SqlCommand cm=new SqlCommand (mysql,cn);
|
源文件: c:\inetpub\wwwroot\hms\webform1.aspx.cs 行: 129
堆栈跟踪:
[SqlException: SQL Server 不存在或访问被拒绝。]
System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction)
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction)
System.Data.SqlClient.SqlConnection.Open()
HMS.WebForm1.btn_login_Click(Object sender, EventArgs e) in c:\inetpub\wwwroot\hms\webform1.aspx.cs:129
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()
|
版本信息: Microsoft .NET Framework 版本:1.1.4322.2032; ASP.NET 版本:1.1.4322.2032