vSReport.docx
《vSReport.docx》由会员分享,可在线阅读,更多相关《vSReport.docx(21页珍藏版)》请在冰豆网上搜索。
vSReport
Vs2008创建一个报表
这个系列文章主要从实例的方式来说明怎么用VisualStudio2008(2005也一样提供这个功能)做RDLC报表的开发,最后再对此系列做总结,讲述一些概念的东西。
作为开遍,我不想过多的讲于概念,主要来说明怎样来实现一个简单的RDLC报表。
二.创建一个简单RDLC项目
1.打开VisualStudio2008,新建一个ASP.NETWebApplication项目,如下图所示。
2.在项目中新建两个文件夹,分别叫DataEntity和ReprotTemplate,如下图,至于这两个文件夹主要用来存放什么,在下面我们会讲到,这里先不说。
3.此项目需要引用Microsoft.Reporting.WinForms和System.Windows.Forms,所以我们需要右击上图中的References,然后在.NETTab中找到我们所需要引用的Reference,点击Ok,添加到我们的引用中去。
4.右击我们新建的DataEntity文件夹,选择AddNewItem…,选择左边的Categories中的Data,然后选择右边的DataSet,输入你的DataSet名字,然后点击Add到这个文件夹下,至此我们知道DataEntity文件夹用来存放数据集。
5.点击VisualStudioIDE左边的ServerExplorer(如果左边没有,可以在View菜单中找到),然后选择一个Database中的表,选择拖到DataSet中(如果还没有IDE中还没有Database影射,那么可以选择ToolsConnectToDatabase…来连接到你需要的Database),当然这个DataSet中的表也可以自己定义(在编辑区点击右键,选择新增表,然后在表中增加你需要的字段)。
6.右击我们新建的ReprotTemplate文件夹,选择AddNewItem…,选择左边的Categories中的Reporting,然后选择右边的Report,输入你需要的名字,点击Add,就样我们就把一个Report的模板加入到ReprotTemplate文件夹中了,Report模板的编辑区如下面第二张图所示。
7.下面我们要做的事情就是编辑这个报表模板,首先我们选择这个报表所需要的数据集,点击Report菜单下面的DataSource,在弹出的ReportDataSource中,选择我们添加在DataEntity中那个DataSet的表,如下图所示。
这里也就说明了,DataEntity中存放的是RDLC模板中所需要的数据集,为RDLC提供数据服务(除了DataSet以外,还有很多数据集,我们以后的内容中会讲解这此)。
8.然后我们在VisualStudioIDE的左边的ToolBox中拖一个Table到我们的报表编辑区中,这个Table默认有三行三列,第一行是标题行,第二行是数据绑定行,第三行是表的页脚行(如果你不想显示其中的一部分你可以选中一行,然后右击这一行的最左边,取消或者选中即可)。
如下图所示,我们在标题行对应的字段中输入标题名,你也可以右击到某一列,选择新增一列在选择列的左边或者右边。
接下来要做的事情就是为这个表选择数据集,选择表,右击表,选择Properties,在弹出的TablePropertiesGeneralTab的DataSetName中选择我们刚到加入的数据集,你需要记住这个名字,因为有的时候你可能会用到。
9.绑定数据到数据行,选择数据行中的第一列,右击选择Expression…,然后在Expression窗口中,选择Category中的,DataSets,然后Item中自动的会列出你已经增加的DataSource,选择一个DataSource,他会为你列出所有的字段,选中你要的字段双击即可到上面的编辑框中(默认的没有直接绑定到每一行的数据),你也可以在编辑框中自己输入如Fields!
Category.Value来选择数据,其中Category是字段名,当你输入Fields!
后会自动提示你有哪此字段。
选择后点击OK,其它的字段也以同样的方法设置即可。
10.上面我们已经完成了新增数据集,设置报表模板,为模板中的控件绑定数据集,那下面我们就来看一下如何提供数据给这个数据集,以及如何实现报表。
首先,我们在项目的根目录下新建一个类叫CustomPageBase.cs,他主要用来实现生成报表,代码如下:
19 using System;
20 using System.Data;
21 using System.Configuration;
22 using System.Linq;
23 using System.Web;
24 using System.Web.Security;
25 using System.Web.UI;
26 using System.Collections.Generic;
27 using Microsoft.Reporting.WinForms;
28
29 namespace RCLC
30 {
31 public class CustomPageBase :
Page
32 {
33 public void GetReportMultipleDataSourceFile(List reportDateSource, string TemplatePath, List parameterList, string FileType)
34 {
35 string reportFormat = FileType;
36 string outputfile = "Report."; //报表名称
37 ReportViewer rview = new ReportViewer();
38 rview.ProcessingMode = ProcessingMode.Local;
39 rview.LocalReport.ReportPath = Server.MapPath(TemplatePath);
40 rview.LocalReport.DataSources.Clear();
41 foreach (ReportDataSource re in reportDateSource)
42 {
43 rview.LocalReport.DataSources.Add(re);
44 }
46 if (parameterList.Count > 0)
47 rview.LocalReport.SetParameters(parameterList);
48 string mimeType, encoding, extension, deviceInfo;
49 string[] streamids;
50 Warning[] warnings;
51 deviceInfo = "" + "True" + "";
52
53 byte[] bytes = rview.LocalReport.Render(reportFormat, deviceInfo, out mimeType, out encoding, out extension, out streamids, out warnings);
54
55 //这里可以输入产生报表的时候有哪些警告信息
56 //if (warnings !
= null && warnings.Length > 0)
57 //{
58 // LoggingManager log = LoggingManager.GetLoggingManager();
59 // foreach (Warning w in warnings)
60 // {
61 // log.Info(w.Message);
62 // }
63 //}
64 HttpContext.Current.Response.Buffer = true;
65 HttpContext.Current.Response.Clear();
66 HttpContext.Current.Response.ContentType = mimeType;
67 HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + outputfile + extension + ";");
68 HttpContext.Current.Response.BinaryWrite(bytes);
69 HttpContext.Current.Response.End();
70 }
71 }
72 }
然后让Default.aspx.cs继承CustomPageBase,然后在Default页面中新增一个Button,在Button的事件中提供产生Report所需要的参数,如下:
1 using System;
2 using System.Collections;
3 using System.Configuration;
4 using System.Data;
5 using System.Linq;
6 using System.Web;
7 using System.Web.Security;
8 using System.Web.UI;
9 using System.Web.UI.HtmlControls;
10 using System.Web.UI.WebControls;
11 using System.Web.UI.WebControls.WebParts;
12 using System.Data.SqlClient;
13 using System.Collections.Generic;
14 using System.Xml.Linq;
15 using Microsoft.Reporting.WinForms;
16 using RCLC.DataEntity;
17
18 namespace RCLC
19 {
20 public partial class _Default :
CustomPageBase
21 {
22 protected void Page_Load(object sender, EventArgs e)
23 {
24
25 }
26
27 protected void ButtonReportGenerate_Click(object sender, EventArgs e)
28 {
29List reportDataSource = new List();
30 RportDataSet ds = new RportDataSet();
31 string templatePath = string.Empty;
32 string totalRecords = string.Empty;
33
34 //获得数据
35 SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["LoggingConnectionString"].ConnectionString);
36 SqlCommand command = conn.CreateCommand();
37 command.CommandType = CommandType.Text;
38 command.CommandText = "SELECT * FROM T_BC_LOGS";
39 SqlDataAdapter da = new SqlDataAdapter(command);
40 da.Fill(ds.T_BC_LOGS);
41
42 //指定报表模板
43 templatePath = "ReportTemplate/LogReport.rdlc";
44
45 //把获取的数据集合提供给在报表中名为RportDataSet_T_BC_LOGS数据集
46 reportDataSource.Add(new ReportDataSource("RportDataSet_T_BC_LOGS", ds.T_BC_LOGS));
47 List parameterList = new List();
48 //Generate Report, 报表可以生成PDF,EXCEL及以其它形式,根据需求去设置
49 GetReportMultipleDataSourceFile(reportDataSource, templatePath, parameterList, "pdf");
50 }
51 }
52 }
53
最后,选择这个页面,点击button就呆以产生你所需要的页面了,如下图所示。
RDLC报表系列
(二)报表中插入图片
一.写作前提
原本的计划把在RDLC报表中插入图片的内容放到后期来讲,但是看到顶贴的朋友们对此内容的需求,所以我改变原来计划,把此节内容提前来讲,希望能及时的给予你帮助。
二.在RDLC报表中插入图片
首先我要声明,此篇我们是在([原创]RDLC报表系列
(一)创建一个报表)文章的基础上来讲,如果还不了解的可以先看这篇文章。
下面我们就来谈一下怎么加入图片到RDLC报表中。
1.首先我们在项目文件中新建一个images文件夹,他用来存放我们报表中所要使用的图片,我们可以插入一个图片文件,如下图所示。
2.打开ReportTemplate文件夹中的报表文件,点击报表的编辑区,接着选择Report菜单下的EnabeddedImages…,在弹出的EnabeddedImages对话框中,选择NewImage,选择我们刚才加入到images中的那个图片文件,加完后如下面第二张图所示,然后点击OK按钮。
3.上面我们已经完成了把图片加入到我们的报表中,但是我们如何应用它呢?
好,现在我们就来解决这个问题,首先选择Report菜单下的PageHeader(因为我要把图片加载到每一页的页首,当然你也可以选择PageFooter,即页脚),这个时间就可以在RDLC报表中看到页首了。
接下来,我们在VisualStudio2008IDE左边的ToolBox中拖一个Image控件到我们报表的Header区,如下图所示。
点击图片,“在VisualStudio2008IDE的右边点击Properties”,然后在Source属性中选择Embedded,这里在Value中就可以选择你刚才加入的图片了,如下图所示。
4.保存并选择代码,就可以在你的报表页首部分看到这个图片了。
至此我们完成了把图片插入到RDLC报表中。
选择结果如下所示。
RDLC报表系列(三)参数、常量及常用表达式的使用
一.写作前提
前两篇我们讲到了如何在RDLC中如何插入和使用图片,除了图片以外,在报表中我们往往需要使用一些特定格式或在特定的条件下使用特定的数据,或对数据做下些处理,并且可能存在一些数据是要我们从ASP.NET程序提供的,所以这篇我们主要讲RDLC报表中如何使用参数、表达式及常用常量。
二.本文内容
1.怎样通过ASP.NET程序为RDLC报表提供参数
2.怎样使用RDLC提供的变量及常用常量
3.常用表达式的使用
4.总结
三.ASP.NET程序为RDLC报表提供参数
在我们的报表中,往往需要从ASP.NET程序提供一些参数显示在报表的指定位置,第一篇中我们已经讲过怎样传递一个数据集,但是我们只需要一个值,总不能把这个值放到DataSet中来传输吧(因为DataSet本其实是由XML结成,在传递过程中需要比data本身更多的资源),所以这个时候我们就需要知道如何传递一个参数到RDLC报表。
下面我们就来讲一讲。
不知道大家还记不记得我在第一篇中的Default.aspx.cs中写的一个Button事件,如下。
1 protected void ButtonReportGenerate_Click(object sender, EventArgs e)
2 {
3List reportDataSource = ne List();
4 RportDataSet ds = new RportDataSet();
5 string templatePath = string.Empty;
6 string totalRecords = string.Empty;
7
8 SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["LoggingConnectionString"].ConnectionString);
9 SqlCommand command = conn.CreateCommand();
10 command.CommandType = CommandType.Text;
11 command.CommandText = "SELECT * FROM T_BC_LOGS";
12 SqlDataAdapter da = new SqlDataAdapter(command);
13 da.Fill(ds.T_BC_LOGS);
14 reportDataSource.Add(new ReportDataSource("RportDataSet_T_BC_LOGS", ds.T_BC_LOGS));
15
16 //TemplateFiles
17 templatePath = "ReportTemplate/LogReport.rdlc";
18 List parameterList = new List();
19 ////Generate Report
20GetReportMultipleDataSourceFile(reportDataSource, templatePath, parameterList, "pdf");
21 }
其中我定义了一个泛型变量,如下:
ListparameterList=newList();
但是我并没有给这个变量赋任何值,我要告诉大家的就是这里变量就是为我们传递参数提供的。
好,下面我们就来讲一下怎么传递这个参数。
1.首先我们打开ReportTemplate文件夹中的RDLC报表模板,点击报表的编辑区,然后打开Report菜单下的ReportParameters…,在ReportParameters窗口中,我们点击Add按钮,接着我们输入这个参数的名称与类型(这个名称你要记住,因为下面的编程中要用到),如果这个参数提供的时候不一定每次都有值,那么我们则要选中Allnullvalue的复选框,如下图所示,如果你有多个参数则以此方法添加即可。
2.我们从VisualStudioIDE左边的ToolBox中拖一个TextBox到这个报表模板的页首(在我的报表中,复杂的表头大部分都是通过TextBox来实现的,可以设计TextBox的边框及字体等属性来设计,所以后面的内容中我不会再提如何设计复杂的报表页首),右击这个TextBox,选择Expression…,在Expression窗口中,我们选择Category中的Parameters,然后双击最右边你刚刚加的那个参数,点击确定即可。
至此,对报表的设计完成了。
3.修改Default.aspx页面中的程序如下所示:
1 protected void ButtonReportGenerate_Click(object sender, EventArgs e)
2 {
3 List reportDataSource = new List()
4 RportDataSet ds = new RportDataSet();
5 string templatePath = string.Empty;
6 string totalRecords = string.Empty;
7
8 SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Loggin