user2660657
user2660657

Reputation: 1

Web Server to Host my MVC4 Web Application

Hi i'm trying to host an mvc4 web application on a web server and it is not working. Do i need to install something in particular so that it works? And what type of web server is the best for this type of situation?

Upvotes: 0

Views: 232

Answers (3)

Andrey Gubal
Andrey Gubal

Reputation: 3479

1)IIS 7.5

2) MVC4 and Framework 4.5 should be installed

3) Also check that in ApplicationPools you set framawork 4.0 for your site (default is 2.0)

It would be better if you show a certain error you receive.

Upvotes: 1

Christian Phillips
Christian Phillips

Reputation: 18769

You will need:

  • IIS, preferably IIS 7+
  • .Net installed on the server
  • make sure the framework is set correctly

Take a look here

if you have all this set up, let us know the error you are seeing.

Upvotes: 1

Alec.
Alec.

Reputation: 5535

See the following Question... How to deploy an MVC 4 application to a Windows Web Server based dedicated hosting?

It seems incredabily relevant to what you are asking.

Also for future reference read https://stackoverflow.com/questions/how-to-ask before asking questions

Upvotes: 0

Related Questions