回 帖 发 新 帖 刷新版面

主题:请各位高手帮忙解决一下这个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()


回复列表 (共2个回复)

沙发

是不是你的用户名或密码写错了

板凳

用户名和密码都没有错。

除了这个问题就没有别的问题会出现这种情况了吗?

我来回复

您尚未登录,请登录后再回复。点此登录或注册