needed requirements for asp.net mvc 3?
I am just wondering what is needed to run asp.net mvc 3(hosting wise)?
.ne开发者_StackOverflow社区t 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).
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.
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
精彩评论