ASP.NET中动态控制RDLC报表
程序员文章站
2023-01-10 08:16:18
在asp.net程序中,可以选择使用水晶报表,功能确实强大。但是web版的水晶报表好像存在版权的问题。如果所作报表不是复杂的一塌糊涂的话,可以使用微软自带的rdlc报表...
在asp.net程序中,可以选择使用水晶报表,功能确实强大。但是web版的水晶报表好像存在版权的问题。如果所作报表不是复杂的一塌糊涂的话,可以使用微软自带的rdlc报表。
rdlc优点:
1:rdlc报表设计简单
2:结果存成xml,易于控制
3:导出格式作的很不错
这里所说的动态控制报表所指的是:在一些时候,制作了报表之后希望在运行中可以动态的做一些小修改,比如说列的位置,用户控制显示那些列等等。
控制方法,尝试了这么几种:
1:控制微软提供的报表对象的属性;
2:报表全部自动生成
3:修改报表源文件,然后加载。
控制微软提供的报表对象的属性:基于这个功能需求,一开始我想到的方法是通过控制微软提供的这些报表对象的属性来实现。因为这种方法最人道了。但是事与愿违,微软的reportviewer对象是用来显示report的,自然不行;我使用的report是自己设计的,localreport,找到report对象,里面方法有这个几个:report.getdefaultpagesettings();report.getdocumentmap()等,第一个是获取打印纸张德设置,第二个是获取doc文档(但是始终出错),都是只读属性;所以,第一种尝试失败。
第二种方法就是报表全部自动生成。可以找到一个完整的例子,在这里:http://www.gotreportviewer.com/dynamictable.zip
这个例子里面,他把xml结构的rdlc报表写成一个类reportdefinition,然后通过自定义这个类的内容来得到一个报表。其实际还是为了自己构造一个报表对象的xml。这是加载自定义报表的过程:win下的代码 this.reportviewer1.reset();
但是几经考虑之后,这个方案也不让人满意,原因是:所有的报表对象都得自己生成,一下子回到了*,没有可视化工具的设计既繁琐又复杂。特别是如果设计几个line,然后再来上几个分组的话,工作量巨大。
于是乎尝试第三种方法:reportvivwer加载报表前在内存中修改报表源文件。这个方法比较狠,其实可以解决很多问题,包括设计自定义的打印纸张等(这里有另外一种设置打印纸张的方法http://waxdoll.cnblogs.com/archive/2006/03/03/342435.html)。
设计思路是:首先加载rdlc文件到一个xmldocument对象;然后修改xml内容;把xml序列化成字节流,交给reportviewer显示。
这是这一段代码:
至于如何getreportcolumns和removecolumnfromrdlc,那就很简单了,就是一个操作xml对象的过程。比方说:
这是使用这一段的代码:
这个方法终于成功了。
附:rdlc文件的xml一段结构
xml结构
rdlc优点:
1:rdlc报表设计简单
2:结果存成xml,易于控制
3:导出格式作的很不错
这里所说的动态控制报表所指的是:在一些时候,制作了报表之后希望在运行中可以动态的做一些小修改,比如说列的位置,用户控制显示那些列等等。
控制方法,尝试了这么几种:
1:控制微软提供的报表对象的属性;
2:报表全部自动生成
3:修改报表源文件,然后加载。
控制微软提供的报表对象的属性:基于这个功能需求,一开始我想到的方法是通过控制微软提供的这些报表对象的属性来实现。因为这种方法最人道了。但是事与愿违,微软的reportviewer对象是用来显示report的,自然不行;我使用的report是自己设计的,localreport,找到report对象,里面方法有这个几个:report.getdefaultpagesettings();report.getdocumentmap()等,第一个是获取打印纸张德设置,第二个是获取doc文档(但是始终出错),都是只读属性;所以,第一种尝试失败。
第二种方法就是报表全部自动生成。可以找到一个完整的例子,在这里:http://www.gotreportviewer.com/dynamictable.zip
这个例子里面,他把xml结构的rdlc报表写成一个类reportdefinition,然后通过自定义这个类的内容来得到一个报表。其实际还是为了自己构造一个报表对象的xml。这是加载自定义报表的过程:win下的代码 this.reportviewer1.reset();
this.reportviewer1.localreport.loadreportdefinition(m_rdl);
this.reportviewer1.localreport.datasources.add(new reportdatasource("mydata", m_dataset.tables[0]));
this.reportviewer1.refreshreport();这是自动生成xml的代码:
private memorystream generaterdl(list<string> allfields, list<string> selectedfields)
{
memorystream ms = new memorystream();
rdlgenerator gen = new rdlgenerator();
gen.allfields = allfields;
gen.selectedfields = selectedfields;
gen.writexml(ms);
ms.position = 0;
return ms;
}
这是完全reportdefinition的一部分定义:
namespace rdl {
using system.xml.serialization;
/**//// <remarks/>
[system.codedom.compiler.generatedcodeattribute("xsd", "2.0.50727.42")]
[system.serializableattribute()]
[system.diagnostics.debuggerstepthroughattribute()]
[system.componentmodel.designercategoryattribute("code")]
[system.xml.serialization.xmltypeattribute(anonymoustype=true)]
[system.xml.serialization.xmlrootattribute(namespace=_
"http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition", isnullable=false)]
public partial class report {
private object[] itemsfield;
this.reportviewer1.localreport.datasources.add(new reportdatasource("mydata", m_dataset.tables[0]));
this.reportviewer1.refreshreport();这是自动生成xml的代码:
private memorystream generaterdl(list<string> allfields, list<string> selectedfields)
{
memorystream ms = new memorystream();
rdlgenerator gen = new rdlgenerator();
gen.allfields = allfields;
gen.selectedfields = selectedfields;
gen.writexml(ms);
ms.position = 0;
return ms;
}
这是完全reportdefinition的一部分定义:
namespace rdl {
using system.xml.serialization;
/**//// <remarks/>
[system.codedom.compiler.generatedcodeattribute("xsd", "2.0.50727.42")]
[system.serializableattribute()]
[system.diagnostics.debuggerstepthroughattribute()]
[system.componentmodel.designercategoryattribute("code")]
[system.xml.serialization.xmltypeattribute(anonymoustype=true)]
[system.xml.serialization.xmlrootattribute(namespace=_
"http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition", isnullable=false)]
public partial class report {
private object[] itemsfield;
但是几经考虑之后,这个方案也不让人满意,原因是:所有的报表对象都得自己生成,一下子回到了*,没有可视化工具的设计既繁琐又复杂。特别是如果设计几个line,然后再来上几个分组的话,工作量巨大。
于是乎尝试第三种方法:reportvivwer加载报表前在内存中修改报表源文件。这个方法比较狠,其实可以解决很多问题,包括设计自定义的打印纸张等(这里有另外一种设置打印纸张的方法http://waxdoll.cnblogs.com/archive/2006/03/03/342435.html)。
设计思路是:首先加载rdlc文件到一个xmldocument对象;然后修改xml内容;把xml序列化成字节流,交给reportviewer显示。
这是这一段代码:
public memorystream generaterdlc()
{
xmldocument sourcedoc = new xmldocument();
string path = appdomain.currentdomain.basedirectory + "test/orderlist.rdlc";
sourcedoc.load(path);
hashtable reportcolumns = getreportcolumns(sourcedoc.lastchild);
//just remove
for (int i = 0; i < reportcolumns.count; i++)
{
if (!findreportcoulmns(reportcolumns[i].tostring()))
{
removecolumnfromrdlc(sourcedoc.lastchild, i);
}
}
memorystream ms = new memorystream();
xmlserializer serializer = new xmlserializer(typeof(xmldocument));
serializer.serialize(ms, sourcedoc);
ms.position = 0;
return ms;
}
{
xmldocument sourcedoc = new xmldocument();
string path = appdomain.currentdomain.basedirectory + "test/orderlist.rdlc";
sourcedoc.load(path);
hashtable reportcolumns = getreportcolumns(sourcedoc.lastchild);
//just remove
for (int i = 0; i < reportcolumns.count; i++)
{
if (!findreportcoulmns(reportcolumns[i].tostring()))
{
removecolumnfromrdlc(sourcedoc.lastchild, i);
}
}
memorystream ms = new memorystream();
xmlserializer serializer = new xmlserializer(typeof(xmldocument));
serializer.serialize(ms, sourcedoc);
ms.position = 0;
return ms;
}
至于如何getreportcolumns和removecolumnfromrdlc,那就很简单了,就是一个操作xml对象的过程。比方说:
private hashtable getreportcolumns(xmlnode root)
{
hashtable cols = new hashtable();
//xmlnamespacemanager s=new xmlnamespacemanager(
xmlnode cells = findchildnode(root,"body/reportitems/table/header/tablerows/tablerow/tablecells");
for (int i = 0; i < cells.childnodes.count; i++)
{
xmlnode cell =findchildnode( cells.childnodes[i],"reportitems/textbox/dataelementname");
cols[i] = cell.innertext;
}
return cols;
}
{
hashtable cols = new hashtable();
//xmlnamespacemanager s=new xmlnamespacemanager(
xmlnode cells = findchildnode(root,"body/reportitems/table/header/tablerows/tablerow/tablecells");
for (int i = 0; i < cells.childnodes.count; i++)
{
xmlnode cell =findchildnode( cells.childnodes[i],"reportitems/textbox/dataelementname");
cols[i] = cell.innertext;
}
return cols;
}
这是使用这一段的代码:
this.reportviewer1.localreport.loadreportdefinition(this.report.generaterdlc());
this.reportviewer1.localreport.datasources.add(new reportdatasource("dataset1", result.tables[0]));
this.reportviewer1.localreport.refresh();
this.reportviewer1.localreport.datasources.add(new reportdatasource("dataset1", result.tables[0]));
this.reportviewer1.localreport.refresh();
这个方法终于成功了。
附:rdlc文件的xml一段结构
xml结构
1<?xml version="1.0" encoding="utf-8"?>
2<report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/sqlserver/reporting/reportdesigner">
3 <datasources>
4 <datasource name="connectionstring">
5 <connectionproperties>
6 <connectstring />
7 <dataprovider>sql</dataprovider>
8 </connectionproperties>
9 <rd:datasourceid>073016a7-6cb0-4e06-a6fd-f5882a039188</rd:datasourceid>
10 </datasource>
11 </datasources>
12 <bottommargin>2.5cm</bottommargin>
13 <rightmargin>2.5cm</rightmargin>
14 <pagewidth>21cm</pagewidth>
15 <rd:drawgrid>true</rd:drawgrid>
16 <interactivewidth>21cm</interactivewidth>
17 <rd:gridspacing>0.25cm</rd:gridspacing>
18 <rd:snaptogrid>true</rd:snaptogrid>
19 <body>
20 <columnspacing>1cm</columnspacing>
21 <reportitems>
22 <chart name="chart1">
2<report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/sqlserver/reporting/reportdesigner">
3 <datasources>
4 <datasource name="connectionstring">
5 <connectionproperties>
6 <connectstring />
7 <dataprovider>sql</dataprovider>
8 </connectionproperties>
9 <rd:datasourceid>073016a7-6cb0-4e06-a6fd-f5882a039188</rd:datasourceid>
10 </datasource>
11 </datasources>
12 <bottommargin>2.5cm</bottommargin>
13 <rightmargin>2.5cm</rightmargin>
14 <pagewidth>21cm</pagewidth>
15 <rd:drawgrid>true</rd:drawgrid>
16 <interactivewidth>21cm</interactivewidth>
17 <rd:gridspacing>0.25cm</rd:gridspacing>
18 <rd:snaptogrid>true</rd:snaptogrid>
19 <body>
20 <columnspacing>1cm</columnspacing>
21 <reportitems>
22 <chart name="chart1">
上一篇: 食补中吃什么补钙最快最好呢