1

It's a very simple question, but I wasn't able to find exact answer.

Do you need to install anything extra besides .Net Framework 3.5 and IIS7 to run ASP.Net MVC applications?

Hope it will be useful to other people too.

1 Answer 1

3

If you don't use any third party libraries, then no.

The host has to have the .NET 3.5 SP1 installed.

However you need to be aware of the trust level issues. Most shared hosts run in medium trust mode. Although this will suffice for the MVC itself, it may not for your other code. If you use reflection for example, you will need the full trust enabled.

Basically this simple code may get you into trouble:

object something = 5;

if (something is int)
{
    // Do something
}

Check your code and choose the host wisely.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.