为什么造书上写的连接不上sqlserver(新人问题)
using System;using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class _6_23 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string StrConn = "Server=8CD60211F1A947B;Data Source=xyyhlccp;Initial Catalog=Northwind;UID=sa;PWD=";
SqlConnection conn = new SqlConnection(StrConn);
conn.Open();
string StrSql = "insert into Admin(AdminUsername,AdminUserpwd,AdminTel) values('" + txtName.Text + "','" + txtPwd.Text + "','" + txtMail.Text + "')";
SqlCommand comm = new SqlCommand(StrSql, conn);
comm.ExecuteNonQuery();
message.Text = "注册成功!";
conn.Close();
}
}
8CD60211F1A947B是我的计算机名
xyyhlccp 数据库名
在建立与服务器的连接时出错。在连接到 SQL Server 2005 时,在默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: 在建立与服务器的连接时出错。在连接到 SQL Server 2005 时,在默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)
源错误:
行 21: string StrConn = "Server=8CD60211F1A947B;Data Source=xyyhlccp;Initial Catalog=Northwind;UID=sa;PWD=";
行 22: SqlConnection conn = new SqlConnection(StrConn);
行 23: conn.Open();
行 24: string StrSql = "insert into Admin(AdminUsername,AdminUserpwd,AdminTel) values('" + txtName.Text + "','" + txtPwd.Text + "','" + txtMail.Text + "')";
行 25: SqlCommand comm = new SqlCommand(StrSql, conn);