找回密码
 立即注册

QQ登录

只需一步,快速开始

pmway
中级会员   /  发表于:2014-11-12 09:28:00
11#
页面代码已经上传附件,请查看

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2014-11-12 13:42:00
12#
回复 11楼pmway的帖子

附件是我的测试工程,点击导出 PDF 按钮可以正常导出:



我直接创建了 SectionReport 类实例,使用以下代码加载报表文件,可以正常导出:
  1.       
  2.         SectionReport report = new SectionReport();

  3.         System.Xml.XmlTextReader xtr = new System.Xml.XmlTextReader(context.Server.MapPath("SectionReport1.rpx"));
  4.         report.LoadLayout(xtr);
  5.         report.Run();
复制代码


所以推测是获取报表这段代码存在问题:

  1.     private SectionReport Report(string key)
  2.     {
  3.        return UserGrade.GetData(CacheDataTypes.Other, key) as SectionReport;
  4.     }
复制代码

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2014-11-14 17:24:00
13#
回复 11楼pmway的帖子

  1.             //设置显示语言版本为中文
  2.             this.WebViewer1.FlashViewerOptions.ResourceLocale = "zh_CN";

  3.             //创建自定义工具条按钮
  4.             ToolButton btnPDF = Tool.CreateButton("PDF");
  5.             btnPDF.ToolTip = "导出到 PDF";
  6.             btnPDF.Caption = "导出到 PDF";

  7.             //设置点击按钮执行的服务
  8.             btnPDF.ClickNavigateTo = "ARExport.ashx?exporttype=PDF";

  9.             //添加按钮到 FlashViewer 中
  10.             this.WebViewer1.FlashViewerToolBar.Tools.Add(btnPDF);

  11.             ToolButton btnWord = Tool.CreateButton("Word");
  12.             btnWord.ToolTip = "导出到 Word";
  13.             btnWord.Caption = "导出到 Word";
  14.             btnWord.ClickNavigateTo = "ARExport.ashx?exporttype=Word";
  15.             this.WebViewer1.FlashViewerToolBar.Tools.Add(btnWord);

  16.             ToolButton btnExcel = Tool.CreateButton("Excel");
  17.             btnExcel.ToolTip = "导出到 Excel";
  18.             btnExcel.Caption = "导出到 Excel";
  19.             btnExcel.ClickNavigateTo = "ARExport.ashx?exporttype=Excel";
  20.             this.WebViewer1.FlashViewerToolBar.Tools.Add(btnExcel);
复制代码
回复 使用道具 举报
pmway
中级会员   /  发表于:2014-11-14 18:23:00
14#
错误信息如图

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2014-11-17 13:39:00
15#
回复 14楼pmway的帖子

电话反馈问题已经解决,此问题关闭。

为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢

评分

参与人数 1满意度 +5 收起 理由
pmway + 5 非常感谢 你们的耐心解答, 最终解决了问题 黄劲松 鹏为研发部 经

查看全部评分

回复 使用道具 举报
12
您需要登录后才可以回帖 登录 | 立即注册
返回顶部