HTTP Error 403.14 - Forbidden IIS Error for ASP.Net MVC 4 Application

前端 未结 13 1954
情书的邮戳
情书的邮戳 2020-12-05 02:52

we developed an asp.net mvc 4 application. in vs 2012 this work fine. we publish this web application and putting it on iis 7.5, but when we want to browse web application t

13条回答
  •  既然无缘
    2020-12-05 03:29

    Open Elevated Command Prompt in Windows (Run command prompt as Administrator).

    And run the command aspnet_regiis -i at the .Net Framework and .Net Framework64 location. Just like below, Here parameter i means install the ASP.NET version 4. The first command is for 32 bit and second is for installing the 64bit version.

    C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis -i
    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis -i
    

    ScreenshotCommandPrompt

    The commands is used to register ASP.NET applications with Internet Information Services (IIS) server.

提交回复
热议问题