关于Gredview的绑定问题当gv绑定数据为空时,怎么多出来一条提示呢?

        txttimetxt.Value = DateTime.Now.ToString("yyyy-MM-dd");
        string times =txttimetxt.Value.Trim();
        DataSet ds = UsersLogin.GetDataSet("select a.UserID,RealName,UserType,b.Oid,TraveLine,Sections,c.Gid,c.SystemTime,Category,CarNumber,TrainNumber,Downtime,Repairstime,Renovatetime,Symptom,Effect,Result,c.CreateTime from dbo.Users as a left join dbo.OperationLine as b on a.UserID=b.UserID left join dbo.ProductionGuide as c on a.UserID=c.UserID where a.State=1 and b.State=1 and c.State=1 and c.SystemTime='" + times + "'");
        gvSummary.DataSource = ds;
        gvSummary.DataBind();

 

我的绑定数据的代码,麻烦要怎么写呢,拜托噢!

守候你守候我
浏览 340回答 4
4回答

RISEBY

if(ds.Tables[0].Rows.Count == )) {    DataRow row = ds.Tables[0].NewRow();    row[0] = "没有录入信息";    ds.Tables[0].Rows.Add(row); }

慕仙森

还需要将你绑定的数据进行显示,ds.Table[0] //这里显示的是你表的第一列数据!

浮云间

我这个绑定是按照时间加载的,假如今天25号没人提交,那么就没有数据的 有人提交就自动的可以加载出来了   所以当大早晨,没人提交时,我点击进入页面,需要看到一条:没有录入信息!这样的提示
打开App,查看更多内容
随时随地看视频慕课网APP