Rdlc優(yōu)點(diǎn):

  1:Rdlc報(bào)表設(shè)計(jì)簡(jiǎn)單

  2: " /> 国内精品久久久久久久影视麻豆,欧美精品videosex性欧美,日韩欧美国产一区在线观看

色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

ASP.NET中動(dòng)態(tài)控制RDLC報(bào)表

  在ASP.NET程序中,可以選擇使用水晶報(bào)表,功能確實(shí)強(qiáng)大。但是web版的水晶報(bào)表好像存在版權(quán)的問(wèn)題。如果所作報(bào)表不是復(fù)雜的一塌糊涂的話(huà),可以使用微軟自帶的Rdlc報(bào)表。

  Rdlc優(yōu)點(diǎn):

  1:Rdlc報(bào)表設(shè)計(jì)簡(jiǎn)單

  2:結(jié)果存成xml,易于控制

  3:導(dǎo)出格式作的很不錯(cuò)

  這里所說(shuō)的動(dòng)態(tài)控制報(bào)表所指的是:在一些時(shí)候,制作了報(bào)表之后希望在運(yùn)行中可以動(dòng)態(tài)的做一些小修改,比如說(shuō)列的位置,用戶(hù)控制顯示那些列等等。

  控制方法,嘗試了這么幾種:

  1:控制微軟提供的報(bào)表對(duì)象的屬性;

  2:報(bào)表全部自動(dòng)生成

  3:修改報(bào)表源文件,然后加載。

  控制微軟提供的報(bào)表對(duì)象的屬性:基于這個(gè)功能需求,一開(kāi)始我想到的方法是通過(guò)控制微軟提供的這些報(bào)表對(duì)象的屬性來(lái)實(shí)現(xiàn)。因?yàn)檫@種方法最人道了。但是事與愿違,微軟的ReportViewer對(duì)象是用來(lái)顯示Report的,自然不行;我使用的report是自己設(shè)計(jì)的,localReport,找到Report對(duì)象,里面方法有這個(gè)幾個(gè):report.GetDefaultPageSettings();report.GetDocumentMap()等,第一個(gè)是獲取打印紙張德設(shè)置,第二個(gè)是獲取doc文檔(但是始終出錯(cuò)),都是只讀屬性;所以,第一種嘗試失敗。

  第二種方法就是報(bào)表全部自動(dòng)生成。可以找到一個(gè)完整的例子,在這里:http://www.gotreportviewer.com/DynamicTable.zip
這個(gè)例子里面,他把xml結(jié)構(gòu)的rdlc報(bào)表寫(xiě)成一個(gè)類(lèi)ReportDefinition,然后通過(guò)自定義這個(gè)類(lèi)的內(nèi)容來(lái)得到一個(gè)報(bào)表。其實(shí)際還是為了自己構(gòu)造一個(gè)報(bào)表對(duì)象的xml。這是加載自定義報(bào)表的過(guò)程: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();這是自動(dòng)生成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;

  但是幾經(jīng)考慮之后,這個(gè)方案也不讓人滿(mǎn)意,原因是:所有的報(bào)表對(duì)象都得自己生成,一下子回到了解放前,沒(méi)有可視化工具的設(shè)計(jì)既繁瑣又復(fù)雜。特別是如果設(shè)計(jì)幾個(gè)line,然后再來(lái)上幾個(gè)分組的話(huà),工作量巨大。

  于是乎嘗試第三種方法:ReportVivwer加載報(bào)表前在內(nèi)存中修改報(bào)表源文件。這個(gè)方法比較狠,其實(shí)可以解決很多問(wèn)題,包括設(shè)計(jì)自定義的打印紙張等(這里有另外一種設(shè)置打印紙張的方法http://waxdoll.cnblogs.com/archive/2006/03/03/342435.html)。

  設(shè)計(jì)思路是:首先加載rdlc文件到一個(gè)XmlDocument對(duì)象;然后修改xml內(nèi)容;把xml序列化成字節(jié)流,交給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;
}
  至于如何GetReportColumns和RemoveColumnFromRdlc,那就很簡(jiǎn)單了,就是一個(gè)操作xml對(duì)象的過(guò)程。比方說(shuō):

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;
}
  這是使用這一段的代碼:

this.ReportViewer1.LocalReport.LoadReportDefinition(this.Report.GenerateRdlc());
this.ReportViewer1.LocalReport.DataSources.Add(new ReportDataSource("DataSet1", result.Tables[0]));
this.ReportViewer1.LocalReport.Refresh();
  這個(gè)方法終于成功了。

  附:rdlc文件的xml一段結(jié)構(gòu)

  xml結(jié)構(gòu)

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">

AspNet技術(shù)ASP.NET中動(dòng)態(tài)控制RDLC報(bào)表,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 平遥县| 柳河县| 时尚| 麻栗坡县| 临沭县| 龙胜| 公主岭市| 卫辉市| 昌宁县| 阿勒泰市| 永定县| 将乐县| 邓州市| 利津县| 安平县| 通海县| 犍为县| 湘阴县| 台前县| 奉化市| 德江县| 伊春市| 阳原县| 渑池县| 临泽县| 淄博市| 彭山县| 泾川县| 城固县| 博兴县| 宜丰县| 英山县| 红安县| 荆州市| 桃江县| 耒阳市| 闸北区| 大埔区| 闽侯县| 图片| 遂川县|