Pankaj
Pankaj

Reputation: 4503

Run ASP.NET MVC Application on Hosting

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

Answers (1)

kdmurray
kdmurray

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:

  • System.Web.Mvc
  • System.Web.Routing
  • System.Web.Abstractions

See Phil Haack's article on bin-deploying with MVC.

Upvotes: 1

Related Questions