Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

needed requirements for asp.net mvc 3?

I am just wondering what is needed to run asp.net mvc 3(hosting wise)?

.net 4.0 - I read is needed
iis 6 - can you use this? (not planning to use it but just want to know)
iis 7 - can you use this
iis 7.5 - pretty sure you can use this to run your asp.net mvc 3 site.

I am just trying to figure out what is the lowest requirements needed to run asp.net mvc 3(razor).

like image 473
chobo2 Avatar asked Jun 08 '11 22:06

chobo2


People also ask

What are the 3 main components of an ASP NET MVC application?

The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller.

Is ASP NET MVC hard to learn?

It's really difficult to try and learn an entirely new language/framework under pressure. If you're required to deliver working software for your day job, trying to learn ASP.NET Core at the same time might be heaping too much pressure on yourself.

What is Microsoft ASP NET MVC 3?

ASP.NET MVC 3 is a framework for building scalable, standards-based web applications using well-established design patterns and the power of ASP.NET and the . NET Framework. It installs side-by-side with ASP.NET MVC 2, so get started using it today!


2 Answers

iis 6 - can you use this?

Yes, you can.

iis 7 - can you use this

Of course.

iis 7.5 - pretty sure you can use this to run your asp.net mvc 3 site.

Absolutely.

.NET 4.0 and ASP.NET MVC 3 are the most important pre-requisites to be installed on the server. So anything ranging from Win 2003 (IIS 6.0) to Win 2008 R2 (IIS 7.5) will work assuming you install those two components.

There's one caveat though with IIS 6.0 and it is about extensionless routes. If you want those you will need to associate the ASP.NET ISAPI filter to all requests.

like image 60
Darin Dimitrov Avatar answered Nov 15 '22 05:11

Darin Dimitrov


To add some more information to this question - if you want to deploy everything with a razor site to run on IIS (for instance if you are with a hosting provider) you can check out Phil Haacks posting on this for the right click "Add Deployable Assemblies" option.

Bin Deploying ASP.Net MVC 3

like image 21
Adam Tuliper Avatar answered Nov 15 '22 05:11

Adam Tuliper