正確的是DataBind();
[url=javascript:alert(1);] [div]fdgfdgfdg\" on\"[/div] [/url]
private void button1_Click(object sender, System.EventArgs e)
{
SqlConnection thisConnection=new SqlConnection(@"Data Source=(local);Integrated Security=SSPI;"+"Initial Catalog=student");
thisConnection.Open();
SqlCommand cmd2=new SqlCommand("select * from 档案 where 学号='"+this.textBox1.Text+"' and 姓名='"+this.textBox2.Text+"'",thisConnection);
SqlDataAdapter da=new SqlDataAdapter();
da.SelectCommand=cmd;
DataTable dt=new DataTable();
da.Fill(dt);
this.dataGrid1.DataSource=dt;
}
本来这个样子就可以拉... 不要将我们两个人的代码放到一起.
我的这个代码不需要databing()
[此贴子已经被作者于2006-8-5 9:12:33编辑过]
我用了你的代码
但是
SqlConnection thisConnection=new SqlConnection(@"Data Source=(local);Integrated Security=SSPI;"+"Initial Catalog=student");
thisConnection.Open();
SqlCommand cmd2=new SqlCommand("select * from 档案 where 学号='"+this.textBox1.Text+"' and 姓名='"+this.textBox2.Text+"'",thisConnection);
SqlDataAdapter da=new SqlDataAdapter();
da.SelectCommand=cmd;
DataTable dt=new DataTable();
da.Fill(dt);
this.dataGrid1.DataSource=dt;
红色的错误提示
名称“cmd”在类或命名空间“学生管理系统.Main”中不存在
昨天就一直出这个问题
private void button1_Click(object sender, System.EventArgs e)
{
SqlConnection thisConnection=new SqlConnection(@"Data Source=(local);Integrated Security=SSPI;"+"Initial Catalog=student");
thisConnection.Open();
SqlCommand cmd2=new SqlCommand("select * from 档案 where 学号='"+this.textBox1.Text+"' and 姓名='"+this.textBox2.Text+"'",thisConnection);
SqlDataAdapter da=new SqlDataAdapter();
da.SelectCommand=cmd;
DataTable dt=new DataTable();
da.Fill(dt);
this.dataGrid1.DataSource=dt;
}
本来这个样子就可以拉... 不要将我们两个人的代码放到一起.
我的这个代码不需要databing()
為何不需要bind()