I am working on a MVC 3 (Razor) application where in I am using RDL (SSRS) for reporting. My requirement is to allow users to select multiple records using Checkbox & when they click on the print button, the PD开发者_开发技巧F should be generated & printed for the selected records. The PDFs are generating using RDL Reports. I am not sure that how to call the aspx page containing the report viewer control.
Any pointers?
You will have to use WebForms (thus mixing WebForms and MVC) in order to use the aspx with the report viewer control.
You can find more information on how to do it here
精彩评论