What is the best way to create reports in ASP.NET MVC1? Any link for learn how to create reports?
+1
A:
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/.
Heinzi
2009-12-26 22:48:49
Is the prblem(for this solution), if i use LINQ
Ognjen
2009-12-26 22:55:33
I don't think so, but I've never tried it with LINQ.
Heinzi
2009-12-27 09:51:30
+1
A:
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!
AlteredConcept
2009-12-26 23:17:33