Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best way for creating reports in ASP.NET MVC

After building my application in ASP.NET MVC and MS sql server, I would now like to display some statistics regarding my data.

What would be the easiest way to create HTML reports which are built of data crossing several tables? (Once the fields are picked they'll be static, meanning a single view is required)

I though their ought to be something in the lines of a wizard letting you drag fields from your tables to a form and generates the logic behind...

like image 817
Wesly Avatar asked Dec 21 '09 15:12

Wesly


2 Answers

I wrote a blog post about this in September. It's a way to render a PDF content type using an RPT file in the application. It covers everything except the creation of the RDLC file, including how to write unit tests for the controller.

like image 100
Jarrett Meyer Avatar answered Nov 07 '22 07:11

Jarrett Meyer


Microsoft Reporting Services?

like image 25
Justin Niessner Avatar answered Nov 07 '22 08:11

Justin Niessner