问题描述
我要将c#
中的gridview绑定到这个
I m going to bind the gridview in c#
when it comese to this
if (ds.Tables.Count > 0)
{
if (ds != null && ds.Tables.Count > 0)
///if (ds.Tables[0].Rows.Count > 0)
{
gdvNotice.DataSource = ds.Tables[0];
Session["Get_Notice"] = ds.Tables[0];
gdvNotice.DataBind();
}
else
{
gdvNotice.DataSource = null;
gdvNotice.DataBind();
}
}
这里返回1并且
Here returns 1 and
if (ds.Tables.Count > 0)
如果是假的话会在第二行中出局
in second if its false and go out of the block
if (ds.Tables[0].Rows.Count > 0)
我的尝试:
if(ds.Tables.Count> 0)
{
if (ds.Tables [0] .Rows.Count> 0)
{
gdvNotice.DataSource = ds.Tables [0];
Session [Get_Notice] = ds.Tables [0];
gdvNotice.DataBind();
}
其他
{
gdvNotice.DataSource = null;
gdvNotice.DataBind();
}
}
What I have tried:
if (ds.Tables.Count > 0)
{
if (ds.Tables[0].Rows.Count > 0)
{
gdvNotice.DataSource = ds.Tables[0];
Session["Get_Notice"] = ds.Tables[0];
gdvNotice.DataBind();
}
else
{
gdvNotice.DataSource = null;
gdvNotice.DataBind();
}
}
推荐答案
这篇关于在绑定网格视图时发出Ds问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!