RDLC report MVC 5 without iframe

ぃ、小莉子 提交于 2020-01-07 07:41:11

问题


Is there any better way to integrate rdlc report on mvc 5 asp.net. everyone is showing using iframe. but i don't like that solution.

Is there any elegant solution ??


回答1:


How about rendering your rdlc report in a separate tab ?!

For instance,:

In your controller:

 public ActionResult Report()
        {
            LocalReport localReport = new LocalReport();
            localReport.ReportPath = Server.MapPath("~/Reports/Report1.rdlc");

            // you may comment dbContext if the report is static or needs no DB-connection
            using (dbContext db = new dbContext())
            {
                ReportDataSource ds1 = new ReportDataSource("DataSet_Header", db.table_X.ToList());
                ReportDataSource ds2 = new ReportDataSource("DataSet_Detail", db.StoreedProcedure_X(5).ToList());
                // ...


                localReport.DataSources.Add(ds1);
                localReport.DataSources.Add(ds2);


                string mimeType;
                string encoding;
                string fileNameExtension;
                Warning[] warnings;
                string[] streams;
                string reportType = "PDF";
                string deviceInfo = "<DeviceInfo>" +
                    "<OutputFormat>PDF</OutputFormat>"+
                    "<PageWidth>11.69in</PageWidth>"+
                    "<PageHeight>8.27in</PageHeight>"+
                    "</DeviceInfo>";
                byte[] renderBytes;


               // add report parameters here, if any
               Microsoft.Reporting.WebForms.ReportParameter[] para = new ReportParameter[] {
                    new ReportParameter("sample", Sample.ToString())
                // , add more parameters if anymore exists ...
                };


                localReport.SetParameters(para);

                renderBytes = localReport.Render(
                    reportType,
                    deviceInfo,
                    out mimeType,
                    out encoding,
                    out fileNameExtension,
                    out streams,
                    out warnings
                    );

                return File(renderBytes, "application/pdf");
            } // end using
        }


In Your View:

You can create <a> tag or @Html.ActionLink to the above action method:

<a href="@Url.Action("Report", "controllerName")">PRINT</a>

Hope this helped :)



来源:https://stackoverflow.com/questions/44613151/rdlc-report-mvc-5-without-iframe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!