Phill Greggan
Phill Greggan

Reputation: 2394

Are there any reporting tools for MVC4?

For the ASP .NET there is crystal reports and always was. But since MVC does not come with toolbox with crystal reports, what are the reporting tool that people typically use with MVC4?

i have two scenarios

  1. if i use HTML has the client what are reporting tools that developers use?

  2. if the client has JQUERY UI, what are reporting tools developers use?

Upvotes: 0

Views: 1801

Answers (1)

Yogi
Yogi

Reputation: 9739

Telerik Reporting (http://www.telerik.com/products/reporting.aspx) is a good comprehensive option. It provides viewers of many types of applications including ASP.Net MVC.

You can also use SQL Server reporting service (SSRS) in you MVC application using MvcReportViewer available at github (https://github.com/ilich/MvcReportViewer)

We have infact used crystal reports in on of our project, for the power and flexibility it gives and we were allowed to use it. This link can help you if you wish to do so.

Having said that, with the evolution of web technologies, you can represent you data in a variety of visuals using HTML5, jquery plugins, CSSes and many other tools out there, and export them, with having little need of reporting component.

Upvotes: 2

Related Questions