主题:请各位高手帮忙解决一下这个ASP.NET连接SQLServer
原程序为:
public class WebForm1 : System.Web.UI.Page
{String ConnectionString="server=Localhost;uid=;pwd=;database=bb;";
private void Page_Load(object sender, System.EventArgs e)
{
SqlConnection conn=new SqlConnection(ConnectionString);
String cmdtext="select count(*) as CustomerCount from aa";
SqlCommand mycommand=new SqlCommand(cmdtext,conn);
conn.Open();
int result=(int)mycommand.ExecuteScalar();
Response.Write("表记录的条数为:"+result.ToString());
Response.Write("<br>SQLserver数据库连接的状态:"+conn.State.ToString());
conn.Close();
}
错误提示为:
“/WebApp”应用程序中的服务器错误。
-----------------------------------------------------------------------------
SQL Server 不存在或访问被拒绝。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: SQL Server 不存在或访问被拒绝。
源错误:
行 24: String cmdtext="select count(*) as CustomerCount from aa";
行 25: SqlCommand mycommand=new SqlCommand(cmdtext,conn);
行 26: conn.Open();
行 27: int result=(int)mycommand.ExecuteScalar();
行 28: Response.Write("表记录的条数为:"+result.ToString());
源文件: c:\inetpub\wwwroot\webapp\webform1.aspx.cs 行: 26
堆栈跟踪:
[SqlException: SQL Server 不存在或访问被拒绝。]
System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction)
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction)
System.Data.SqlClient.SqlConnection.Open()
WebApp.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\webapp\webform1.aspx.cs:26
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()