为什么偶连接不到数据库?
偶是按书上的来的,可就是怎么改都连接不上数据库,请大家帮帮忙啊数据库是没问题的
Response.Write("<center><b>使用label空间显示数据库是否成功</b></center>");
string connString="server=localhost; uid=sa; pwd=; database=Northwind";
try
{
SqlConnection myConnection = new SqlConnection (connString);
myConnection.Open();
Label1.Text="连接成功,连接字符是:"+connString;
}
catch
{
Label1.Text="连接失败,连接字符是:"+connString;
}