博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ReportView报表开发记录(一)
阅读量:5901 次
发布时间:2019-06-19

本文共 2249 字,大约阅读时间需要 7 分钟。

在公司开发,使用到ReportView技术,写下自己的经验。

1.在工具箱中找到 ReportViewer,ScriptManager放到test.aspx页面。

如果找不到报表项,请参考 

 

2.添加数据集 DataSet.xsd

 

在数据集中添加DataTable,添加查询的列,列名要和数据库中的列(字段)对应。

3.添加报表Report.rdlc

4.绑定数据

在这里绑定数据使用的是动态绑定。 

1  private void getDateBind() 2     { 3         //获得路径 4         string req_url = this.Request.Url.ToString(); 5         string currentPath = ""; 6         int pos = req_url.LastIndexOf("/"); 7         if (pos > 0) 8         { 9             currentPath = req_url.Substring(0, pos + 1);//给报表文本框添加url10         }11         DataSet ds = BuildingDetails.GetIndustryHYData(time1, time2, buildingId, industryId);//从数据库中查询的数据12         totalCount.InnerText = ds.Tables[0].Rows.Count.ToString();13         rvBuildingDetail_IndustryHY.LocalReport.DataSources.Clear();14         rvBuildingDetail_IndustryHY.LocalReport.DataSources.Add(new ReportDataSource("BuildingDetail_IndustryHY", ds.Tables[0]));15         rvBuildingDetail_IndustryHY.AsyncRendering = true;16         rvBuildingDetail_IndustryHY.InteractivityPostBackMode = InteractivityPostBackMode.AlwaysSynchronous;17         rvBuildingDetail_IndustryHY.ShowToolBar= true;//获取或设置一个指示工具栏在控件上是否可见的值。默认为true18         rvBuildingDetail_IndustryHY.LocalReport.EnableHyperlinks = true;//指示在报表包含超链接操作时是否可以呈现19         rvBuildingDetail_IndustryHY.HyperlinkTarget = "_self";//在相同的框架中打开被链接文档20         rvBuildingDetail_IndustryHY.LocalReport.ReportPath = @"BuildingDetail\rdlc\BuildingDetail_IndustryHY.rdlc";//获取或设置本地报表的本地文件系统路径21         rvBuildingDetail_IndustryHY.LocalReport.ReportEmbeddedResource = "BuildingDetail_IndustryHY.rdlc";//获取或设置报表嵌入资源的名称22 23         //设置参数24         ReportParameter rpCurrentPath = new ReportParameter("url", currentPath);25         ReportParameter rpTime1 = new ReportParameter("time1", time1);26         ReportParameter rpTime2 = new ReportParameter("time2", time2);27         ReportParameter rpIndustryId = new ReportParameter("industryId", industryId);28         ReportParameter rpBuildingId = new ReportParameter("buildingId", buildingId);29         rvBuildingDetail_IndustryHY.LocalReport.SetParameters(new ReportParameter[] { rpCurrentPath, rpCurrentPath, rpTime1, rpTime2, rpIndustryId, rpBuildingId });30     }
到此,整个流程完成。

 

转载于:https://www.cnblogs.com/worf/p/5893436.html

你可能感兴趣的文章
AssetBundle进阶内存优化(Unity 4.x)
查看>>
Windows Home Server 简体中文版安装和配置体验 - 海量图鉴
查看>>
GitHub 版本控制 项目托管 00 总体框架
查看>>
Silverlight & Blend动画设计系列五:故事板(StoryBoards)和动画(Animations)
查看>>
Windows 8部署系列PART3:配置WDS服务器环境
查看>>
Ruby中写一个判断成绩分类的脚本
查看>>
《从零开始学Swift》学习笔记(Day 40)——析构函数
查看>>
Exchange2003-2010迁移系列之十,Exchange证书攻略
查看>>
使用NTFS权限保护数据安全
查看>>
infortrend ESDS RAID6故障后的数据恢复方案
查看>>
【STM32 .Net MF开发板学习-23】DHT11温湿度传感器通信(下)
查看>>
extmail集群的邮件负载均衡方案 [lvs dns postfix]
查看>>
SCCM2012SP1---资产管理和远程管理
查看>>
Android Activity 之 startActivityForResult 的使用
查看>>
org.springframework.util 类 Assert的使用
查看>>
java提供类与cglib包实现动态代理
查看>>
flask上传多个文件,获取input中的数组
查看>>
更改UIView的背景
查看>>
JLNotebookView
查看>>
StackPanel
查看>>