彩票走势图

详析ActiveReports的Silverlight报表打印方式

原创|使用教程|编辑:郝浩|2013-08-05 11:32:32.000|阅读 716 次

概述:ActiveReports 7中包括了一个Silverlight报表查看器,但我们今天讨论的重点在于很多Silverlight报表开发者最关心的老大难问题——打印。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

  报表开发工具ActiveReports 7中包括了一个Silverlight报表查看器,虽然Silverlight近两年并没有太流行了,但我们今天讨论的重点在于很多Silverlight报表开发者最关心的老大难问题——打印。设计和创建报表的最终目的肯定不局限于报表查看体验,最终用户无一例外的还需要有效的报表打印

  在ActiveReports的Silverlight报表查看器得工具栏上就提供了“打印”按钮来满足这一需求。但是对于内容较多的复杂报表的打印,我们一般推荐使用PDF打印选项来完成。虽然ActiveReports支持原生的Silverlight API打印,但是为了减小后台打印的大小,保证打印的稳定性,保证报表内条码打印的质量,还是建议使用PDF打印来代替默认的Silverlight打印。

  使用PDF打印的方法一般是在Silverlight项目,直接将报表转换为PDF格式然后再打印。在ActiveReports中设置好PDF打印后,单击Silverlight报表查看器得工具栏上的“打印”按钮就会出现如下对话框:

详析ActiveReports的Silverlight报表打印方式

  设置PdfPrint的方法很简单,在Silverlight报表查看器的Web.config文件中添加以下XML代码就行了:

<httpHandlers>
  <add verb="*" path="*.ar7" type="GrapeCity.ActiveReports.Web.Handlers.ReportBinariesStreamer, GrapeCity.ActiveReports.Web.v7, Version=7.0.xxxx.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
  <add verb="*" path="*.ar7Web" type="GrapeCity.ActiveReports.Web.Handlers.WebCacheAccessHandler, GrapeCity.ActiveReports.Web.v7, Version=7.0.xxxx.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
  <add verb="*" path="*.ActiveReport" type="GrapeCity.ActiveReports.Web.Handlers.CompiledReportHandler, GrapeCity.ActiveReports.Web.v7, Version=7.0.xxxx.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
  <add verb="*" path="*.rpx" type="GrapeCity.ActiveReports.Web.Handlers.RpxHandler, GrapeCity.ActiveReports.Web.v7, Version=7.0.xxxx.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
  <add verb="*" path="*.rdl,*.rdlx" type="GrapeCity.ActiveReports.Web.Handlers.RdlxHandler, GrapeCity.ActiveReports.Web.v7, Version=7.0.xxxx.0, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
  <remove verb="*" path="*.asmx" />
  <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpHandlers>

  但是最近我们收到不少反馈说,在调用LoadDocument方法将报表加载到Silverlight报表查看器后,PdfPrint功能不起作用。

  众所周知,加载报表最常用的方法是LoadFromService和LoadDocument。经过我们测试,LoadFromService由于带有一个报表文件路径的字符串,所以PdfPrint完全正常工作,所以问题明显出在LoadDocument上,由于使用LoadDocument加载的报表不带文件路径,让Silverlight报表查看器不知道报表在服务器端的具体位置,导致了PDF打印无法完成。我们最后想到一个变通的方法来解决这一问题。

1、为运行报表和生成ID添加一个Service

2、添加ReportCache和IHttpHandler接口(Report.ashx)。这个主要用来缓存报表和获取rdf和准备打印的pdf的。

public class Report : IHttpHandler
{
   public void ProcessRequest(HttpContext context)
   {
      string id = context.Request.Params["id"];
      if (string.IsNullOrEmpty(id))
      {
         ThrowException(context.Response);
         return;
      }
 
      SectionDocument sd = ReportCache.GetSectionDocument(id);
      if (sd == null)
      {
         ThrowException(context.Response);
         return;
      }
 
      string type = context.Request.Params["type"];
      if (string.IsNullOrEmpty(type))
      {
         type = "rdf";
      }
 
      type = type.ToLower();
      switch (type)
      {
         case "pdf":
         PdfExport pdfExport = new PdfExport();
         string print = context.Request.Params["print"];
         if (print == null)
         {
            print = "false";
         }
 
         print = print.ToLower();
         if (print != "false")
         {
            pdfExport.Options.OnlyForPrint = true;
         }
 
         using (var outStream = new MemoryStream())
         {
            // Put output into the stream
            pdfExport.Export(sd, outStream);
 
            // send the bits
            context.Response.Clear();
            context.Response.ContentType = "application/pdf";
            context.Response.AddHeader("content-disposition", "inline; filename=ActiveReports.PDF");
            context.Response.BinaryWrite(outStream.ToArray());
         }
         break;
      case "rdf":
      default:
         using (MemoryStream outStream = new MemoryStream())
         {
            // Put output into the stream
            sd.Save(outStream);
 
            // send the bits
            context.Response.Clear();
            context.Response.BinaryWrite(outStream.ToArray());
         }
         break;
      }
   }
 
   private void ThrowException(HttpResponse response)
   {
      response.ContentType = "text/html";
      response.Write("The specified report was not found on the server");
      response.Flush();
   }
 
   public bool IsReusable
   {
      get
      {
         return false;
      }
   }
}

 

3、自定义Silverlight报表查看器

  • 使用DefaultSLViewerTemplates.xaml
  • 自定义“打印”按钮
  • 为绑定“打印”按钮命令

  然后调用LoadDocument方法加载的报表就能正常的使用PDF打印功能了。


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP