Run ASP.NET MVC Application on Hosting
Is it necessary that we need to install asp.net mvc on hosting server to run application 开发者_Go百科develop in asp.net mvc?
I had developed a application and i am uploading on ixwebhosting hosting.
my application is not working.
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:
- System.Web.Mvc
- System.Web.Routing
- System.Web.Abstractions
See Phil Haack's article on bin-deploying with MVC.
精彩评论