Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How I can host my MVC3 application in .net 3.5? [closed]

I have made my application in ASP.NET MVC 3. The server I use only have 3.5 .net framrwork installed on server.

Please let me know how I can deployed my application in .net 3.5 server. the server I used rackspace hosting and need to host application on the server. I am not own the server. Someone else have own the server and I just give the deployed application on their server.

Please help me on without moving to any other server how I can host my asp.net MVC 3 application. Is it possible to do that thing.

Thanks

like image 533
Chinook Avatar asked Mar 10 '12 02:03

Chinook


1 Answers

MVC3 requires .NET 4 or greater. No way around it.

You will have to either upgrade the server to .NET 4 (it can have both 3.5 and 4 installed at the same time) or you will have to downgrade your app to MVC2. If you are using Razor, that will also mean converting all your views to Webforms views as Razor does not work on .NET 3.5.

like image 75
Erik Funkenbusch Avatar answered Nov 19 '22 20:11

Erik Funkenbusch