找回密码
 立即注册

QQ登录

只需一步,快速开始

KinnSoft
高级会员   /  发表于:2015-5-21 18:03:00
21#
回复 15楼frank.zhang的帖子

        这个好像Ok了。
回复 使用道具 举报
KinnSoft
高级会员   /  发表于:2015-5-21 18:09:00
22#

导出成Excel (xlsx) 格式的文件

回复 18楼frank.zhang的帖子

         我用你给的方法,导出成xlsx的Excel文件,结果报错, 提示没有CopyTo()函数
         



      你之前的代码如下:
      
string report = "UAFL_Test";
            // Provide the page report you want to render.
            GrapeCity.ActiveReports.PageReport _reportDef = new GrapeCity.ActiveReports.PageReport(new System.IO.FileInfo(Server.MapPath("/Reports/" + report + ".rdlx")));
            //_reportDef.Report.DataSources[0].DataSourceReference = "";
            //_reportDef.Report.DataSources[0].ConnectionProperties.DataProvider = "OLEDB";
            //_reportDef.Report.DataSources[0].ConnectionProperties.ConnectString = string.Format(&quotrovider=Microsoft.Jet.OLEDB.4.0;Data Source={0};", Server.MapPath("/Data/NWind_CHS.mdb"));

            GrapeCity.ActiveReports.Document.PageDocument _reportRuntime = new GrapeCity.ActiveReports.Document.PageDocument(_reportDef);

            // Create an output directory
            System.IO.MemoryStream ms = new System.IO.MemoryStream();

            // Provide settings for your rendering output.
            GrapeCity.ActiveReports.Export.Excel.Page.ExcelRenderingExtensionSettings
            excelSetting = new GrapeCity.ActiveReports.Export.Excel.Page.ExcelRenderingExtensionSettings();
            excelSetting.FileFormat = GrapeCity.ActiveReports.Export.Excel.Page.FileFormat.Xlsx;
            excelSetting.MultiSheet = false;
            GrapeCity.ActiveReports.Extensibility.Rendering.ISettings setting = excelSetting;

            //Set the rendering extension and render the report.
            GrapeCity.ActiveReports.Export.Excel.Page.ExcelRenderingExtension
            excelRenderingExtension = new
            GrapeCity.ActiveReports.Export.Excel.Page.ExcelRenderingExtension();
            GrapeCity.ActiveReports.Rendering.IO.MemoryStreamProvider outputProvider = new GrapeCity.ActiveReports.Rendering.IO.MemoryStreamProvider();
            _reportRuntime.Render(excelRenderingExtension, outputProvider, excelSetting.GetSettings());

            Response.ContentType = "application/vnd.ms-excel";
            Response.AddHeader("content-disposition", "inline;filename=客户订单.xlsx");
            outputProvider.GetPrimaryStream().OpenStream().CopyTo(ms);
            Response.BinaryWrite(ms.ToArray());
            Response.End();

本帖子中包含更多资源

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

x
回复 使用道具 举报
frank.zhang
社区贡献组   /  发表于:2015-5-22 13:36:00
23#
您好,
这个问题我们在http://gcdn.gcpowertools.com.cn/showtopic-17156.html继续讨论。
回复 使用道具 举报
frank.zhang
社区贡献组   /  发表于:2015-6-1 17:43:00
24#
为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢
回复 使用道具 举报
123
您需要登录后才可以回帖 登录 | 立即注册
返回顶部