Asp.Net MVC Business Reporting Features

I need to add a business report for the application I'm working on. I have found very little way to support MVC initially. I would like to receive feedback about the tools that people used, about how they used (native or hybrid) and, if possible, links to examples demonstrating integration.

I would like to receive feedback on the use of

  • Crystal Reports
  • SSRS
  • Telerik

MVC Reporting Solutions


  • SSRS - requires a hybrid application with a winforms page that hosts the report
  • Telerik - ???
  • Crystal Reports - requires a hybrid application with a winformats page that hosts the report
  • FASTREPORT®.NET - supports asp.net, but the provider has not tried and does not support MVC.
+4
source share
3 answers

Telerik says that their report viewer in the web form product really works in MVC (they have an expression on their website that ASP.NET AJAX works in MVC with some special components, and I used it in the MVC application and with what I used, it all works for me).

SSRS works in MVC if you use web forms and do not use the MVC view; it is still possible. You need to configure the form as ASP.NET does, use the form with runat = "server", etc. But I really got it to work.

I do not know about Crystal.

+1
source

Here is what I did a couple of years ago to get the SSRS report to run in MVC. http://dvdtracker.livejournal.com/1810.html

+2
source

Sorry for the late answer, but I found it while looking for documentation on my project. I am currently using Perpetuum SharpShooter and it works well in my MVC application (after I spent a few days to get it working as I need). Perhaps this will be useful for someone.

+2
source

Source: https://habr.com/ru/post/1306250/


All Articles