为什么和sql server2000连接不成功
SqlConnection cn=new SqlConnection("server=localhost;database=Northwind;user=adotest;password=adotest");SqlCommand cmd=new SqlCommand("select * from Customers",cn);
SqlDataAdapter da=new SqlDataAdapter(cmd);
DataSet ds=new DataSet();
da.Fill(ds,"Customers");//每次到这个位置出错,提示是:用户 'adotest' 登录失败。该用户与可信 SQL Server 连接无关联。
this.GridView1.DataSource=ds.Tables[0].DefaultView;
this.DataBind();
那位高手帮忙看看是什么原因?
[ 本帖最后由 apple2495 于 2010-3-29 15:46 编辑 ]