Reputation: 1362
I want to deploy the application in the Windows Server 2008 R2. But I am wondering if I need to install the .Net Framework 4.0 since the version available in the server is 2.0? Do I need also to install the MVC Framework?
Upvotes: 0
Views: 2405
Reputation: 35572
you don't need to install MVC, only dlls can do the task
there are different ways to do it, see links
http://msdn.microsoft.com/en-us/library/dd410407(v=vs.90).aspx
http://msdn.microsoft.com/en-us/library/gg286946.aspx
Upvotes: 1
Reputation: 20366
You may use the ASP.NET MVC3 installer,
or simply copy the required dlls into bin directory of your web application
such as System.Web.Mvc.dll, System.Web.Helpers.dll, System.Web.Razor.dll, System.Web.WebPages.dll, System.Web.WebPages.Razor.dll, System.Web.WebPages.Administration.dll, System.Web.WebPages.Deployment.dll, Microsoft.Web.Infrastructure.dll
Upvotes: 1