0
我需要檢查回報在我的ASP淨GridView的代碼數據表和count行。C#檢查返回的數據表
我試過這個解決方案,我沒有錯誤,但代碼沒有顯示警報,也沒有統計行數。
我的代碼如下。
我將不勝感激任何幫助,你可以給我解決這個問題。
public DataTable GridViewBind()
{
sql = " SELECT * FROM tbl; ";
try
{
dadapter = new OdbcDataAdapter(sql, conn);
dset = new DataSet();
dset.Clear();
dadapter.Fill(dset);
DataTable dt = dset.Tables[0];
GridView1.DataSource = dt;
GridView1.DataBind();
return dt;
if (dt.Rows.Count == 0)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('No data.');window.location='default.aspx';", true);
}
}
catch (Exception ex)
{
throw ex;
}
finally
{
dadapter.Dispose();
dadapter = null;
conn.Close();
}
}
非常感謝。 – Hamamelis