ChrisP
ChrisP

Reputation: 10116

What .NET-based reporting tools are best suited for an MVC web application?

The Microsoft .NET web (MVC) application will include about 100 reports that will contain dynamically generated text w/ embedded data, images, static text, and tabular data. All reports need to be generated on-the-fly as user inputted data will drive the necessary content for the reports. The reports will be viewed as web pages and must be exported to a PDF file that the user can download.

Suggestions based upon your real-life experiences w/ tools appreciated.

Upvotes: 0

Views: 490

Answers (1)

psousa
psousa

Reputation: 6726

I've used SQL Reporting Services with success on that scenario. HOWEVER, I had to create an ASP.NET page to host the Report Viewer Control, as it requires ViewState and such.

If this is not an issue for you, I can garantee that it works quite well. The PDF generation is good and the excel export is fantastic.

Upvotes: 1

Related Questions