首页上一页 1 下一页尾页 4 条记录 1/1页
关于统计数据在Label控件显示的问题
发表在ASP.NET图书答疑
2009-04-10
是否精华
是
否
版块置顶:
是
否
《asp.net范例宝典》实例207问题:我想把统计的数据在Label控件显示(书中在gridview控件中显示),用
Label3.Text = ds.Tables["sell"].DefaultView.ToString();为何得不到数据?
请指教,谢谢!
原代码:
sqlStr = "select count(distinct 日期) as 商品数 from tb_sell where 销价 >500";
string conn = ConfigurationManager.AppSettings["ConnectionString"].ToString();
SqlConnection myConn = new SqlConnection(conn);
myConn.Open();
SqlDataAdapter da = new SqlDataAdapter(sqlStr, myConn);
DataSet ds = new DataSet();
da.Fill(ds, "sell");
GridView1.DataSource = ds.Tables["sell"].DefaultView;
GridView1.DataBind();
我加的:
Label3.Text = ds.Tables["sell"].DefaultView.ToString();
Label3.Text = ds.Tables["sell"].DefaultView.ToString();为何得不到数据?
请指教,谢谢!
原代码:
sqlStr = "select count(distinct 日期) as 商品数 from tb_sell where 销价 >500";
string conn = ConfigurationManager.AppSettings["ConnectionString"].ToString();
SqlConnection myConn = new SqlConnection(conn);
myConn.Open();
SqlDataAdapter da = new SqlDataAdapter(sqlStr, myConn);
DataSet ds = new DataSet();
da.Fill(ds, "sell");
GridView1.DataSource = ds.Tables["sell"].DefaultView;
GridView1.DataBind();
我加的:
Label3.Text = ds.Tables["sell"].DefaultView.ToString();