0

I installed Visual Studio 2015 Community edition. VS2013 previously used. IIS got 2 web application. First - old web forms. Second is mobile version of first web app using MVC. OS: windows 7(x64)

Web forms works as before. MVC application is not. Got HTTP Error 403.14 - Forbidden.

Already tried all from there: ASP.NET MVC on IIS 7.5

It is still trying to list directory and can't do it. What can go wrong with it after this installation?

Community
  • 1
  • 1
aleha_84
  • 8,309
  • 2
  • 38
  • 46

1 Answers1

0

Is it an MVC3 or MVC4 app? These are not supported in VS 2015. MVC4 support will be coming back in Update 1 later this year due to popular demand.

You can confirm you are using MVC 4 by opening packages.config and scrolling to the entry for Microsoft.AspNet.Mvc.  If the version listed starts with "4", this means you are using MVC 4.

Van Kichline
  • 1,703
  • 1
  • 14
  • 15