Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC & SQL Server Reporting Services

Tags:

I am getting started with ASP.NET MVC.

Is it easy or even possible to use the ReportViewer in MVC as you can with webforms? If not, what can be done?

like image 473
Ronnie Overby Avatar asked Jun 15 '09 18:06

Ronnie Overby


People also ask

Is ASP.NET MVC still used?

ASP.NET MVC is no longer in active development. The last version update was in November 2018. Despite this, a lot of projects are using ASP.NET MVC for web solution development. As to JetBrains' research, 42% of software developers were using the framework in 2020.

What is .NET MVC used for?

The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating MVC-based Web applications.

Is ASP.NET and MVC same?

ASP.NET is a 2 tier application in which no separate section for the database and MVC is a 3 tier application in which view and logic is kept separate. In ASP.NET for each . aspx form one URL is generated, but in MVC the url's are generated based on the controller and by the router configuration.

What is difference between C# and ASP.NET MVC?

They are the same thing. C# is the language you have used to do your development, but ASP.NET MVC is the framework you used to do it.


1 Answers

I have included a ReportViewer on an .aspx page within an MVC site for viewing reports and it works fine. Not seamless but definitely functional.

http://msdn.microsoft.com/en-us/library/ms252073.aspx

like image 109
newslacker Avatar answered Oct 29 '22 21:10

newslacker