加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

报表遇到的问题(一)

发布时间:2020-12-12 15:19:02 所属栏目:MsSql教程 来源:网络整理
导读:1.报表的显示. ?????????? datatable Dt; ?????????? int shopId = Convert.ToInt32(Session["ShopId"].ToString()); ??????????? string realName = DDLCasher.SelectedItem.ToString().Trim(); ? ?????????? //调用bll层,查询数据库 ?????????? Bll.CardCo

1.报表的显示.

?????????? datatable Dt;

?????????? int shopId = Convert.ToInt32(Session["ShopId"].ToString());
??????????? string realName = DDLCasher.SelectedItem.ToString().Trim();

?

?????????? //调用bll层,查询数据库

?????????? Bll.CardConsumeSummaryMGR m_CardViewMGR = new Bll.CardConsumeSummaryMGR();

?????????? //获得datatabel.
??????????? dt = m_CardViewMGR.SelectSellLogByUserName(StartTime,EndTime,realName,shopId);

??????????

??????????? ReportDocument reportDocument = new ReportDocument();
??????????? reportDocument.Load(Server.MapPath("userSell.rpt"));

?????????? //绑定数据
??????????? reportDocument.SetDataSource(dt);
??????????? crvUserSellLog.ReportSource = reportDocument;

2.报表中,点击报表工具栏上的按钮,每次都会出现登录sqlserver2008的界面.

http://blog.csdn.net/zero8500/archive/2008/05/07/2407793.aspx

3.报表的样式.

报表的样式自己一直都懒的拖,后来不得已,还是拖动的,难道报表的样式没有更简便一点的方法吗?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读