如何ds后取得select的记录数?
try
{
con.Open();
SqlDataAdapter da = new SqlDataAdapter(strSql, con);
DataSet ds = new DataSet();
da.Fill(ds);
Rp_GradeList.DataSource = ds;
Rp_GradeList.DataBind();
}
之后怎样获得找到的行数呢。 其中 strSql = "select * from Grade ";
谢谢大家。
------解决方案--------------------ds.tables[0].rows.count
------解决方案--------------------ds.Tables[0].Rows.Count