Reputation: 1195
What is the best way to create reports in ASP.NET MVC1? Any link for learn how to create reports?
Upvotes: 0
Views: 225
Reputation: 2632
I found the following app from codeplex really helpful when i was trying to figure out how to do reporting in asp.net mvc. -> Sample Report Solution
Hope this helps!
Upvotes: 1
Reputation: 172468
The easiest way is to create .rdlc
files, which can be presented in ASP.NET by using the ReportViewer control. Everything you need is already included in Visual Studio.
Tutorials can be found by googling for ReportViewer
, on MSDN or on http://www.gotreportviewer.com/.
Upvotes: 1