SqlDataAdapter sda = new SqlDataAdapter(“select * from……”);
DataSet ds = new DataSet();
sda.Fill(ds, "newsTable");
this.GridView1.DataSource = ds.Tables[0].DefaultView;
this.GridView1.DataBind();在GridView里我不想显示第一条数据,而是想从第二条开始,相当于执行一次sdr.Reader();请问有什么好办法