ASP.NET MVC 5 runs on IIS 7.5 Windows Server 2008?

0

I have a website that is developed in ASP.NET Framework 4.5 MVC 5 and is not opening in IIS 7.5 Windows Server 2008, but in IIS Express Local 7 of Windows 7 opens normal.

Is there anything to install in IIS?

    
asked by anonymous 14.07.2015 / 15:08

2 answers

1

Try the following solutions:

  • Install the HotFix KB 980368 on the server where IIS is installed
  • If HotFix does not work, use the configuration below:

    <system.webServer>
      <modules>
    <remove name="UrlRoutingModule-4.0" />
    <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />
    

        

14.07.2015 / 16:52
0

Maybe it's some non-enabled configuration. Try this:

  • Enter 'Turn Windows Features On or Off'
  • Open the 'Internet Information Services' tab
  • Open the 'World Wide Web Services' tab
  • Open the 'Application Development Features' tab
  • Select All.
  • 16.07.2015 / 00:30