Reputation: 4503
Is it necessary that we need to install asp.net mvc on hosting server to run application develop in asp.net mvc?
I had developed a application and i am uploading on ixwebhosting hosting.
my application is not working.
Upvotes: 0
Views: 406
Reputation: 3048
If the host supports ASP.NET 2.0 or later I think you should be able to just include the System.Web.MVC DLLs in your bin folder when you deploy to the server. The DLLs you need are:
See Phil Haack's article on bin-deploying with MVC.
Upvotes: 1