FormView
可以用下面方法绑定数据吗?为什么显示不出来呢?
DataSet ds1 = new DataSet();
SqlDataAdapter sda1 = new SqlDataAdapter("select *
from score1 where studentnum= '" + Label2.Text + "'", meteor);
sda1.Fill(ds1, "score1");
FormView1.DataSource = ds1.Tables["score1"];
FormView1.DataBind();