Ognjen
Ognjen

Reputation: 1195

reports in ASP.NET MVC1

What is the best way to create reports in ASP.NET MVC1? Any link for learn how to create reports?

Upvotes: 0

Views: 225

Answers (2)

AlteredConcept
AlteredConcept

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

Heinzi
Heinzi

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

Related Questions