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?
Asked
Active
Viewed 2,404 times
2 Answers
1
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

linquize
- 19,828
- 10
- 59
- 83
1
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

Raab
- 34,778
- 4
- 50
- 65
-
thank you, but Do I need to install the .Net Framework 4.0, since the server doesn't have this? – user335160 Jun 05 '12 at 02:55
-
yes, you need to install it. and note that you can run .net FW 2.O AND 4.0 side by side on the same server – Raab Jun 05 '12 at 03:00