RDLC report MVC 5 without iframe
问题 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