views:

76

answers:

2

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
Is the prblem(for this solution), if i use LINQ
Ognjen
I don't think so, but I've never tried it with LINQ.
Heinzi
+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