IIS 7.5 and ASP .NET 2.0

后端 未结 9 1030
星月不相逢
星月不相逢 2021-02-19 03:00

Are there any known issues with IIS 7.5? I\'m getting the following error when I try to browse/start/view any page on the site.

HTTP Error 500.19 - Internal Serv         


        
相关标签:
9条回答
  • 2021-02-19 03:09

    Had a similar issue, ended up finding this article of use: http://support.microsoft.com/kb/942055

    basically the applicationHost.config had the handler section locked: was

    <section name="handlers" overrideModeDefault="Deny" />
    

    i changed it to

    <section name="handlers" overrideModeDefault="Allow" />
    

    and it worked.

    also worth checking that ALL the asp.net roles have been installed, see link text.

    0 讨论(0)
  • 2021-02-19 03:15

    This has solved my issue on Windows 7 64bit IIS 7.

    0 讨论(0)
  • 2021-02-19 03:19

    This is comming due to asp.net not install in IIS for this, Turn on Windows features on or off, iis feature selection in "Programs and Features" in the control panel's. Select IIS then "world wide web services" then "Application Devlopment Features" then "ASP" and "ASP.NET"

    0 讨论(0)
  • 2021-02-19 03:26

    After fixing as above said We will get the following error

    Error message when you visit a Web site that is hosted on IIS 7.0:
    HTTP Error 403.14 - Forbidden.

    To resolve this problem, use one of the following methods.


    Method 1:To resolve this problem, follow these steps:

    • Start IIS Manager. To do this, click Start, click Run, type inetmgr.exe, and then click OK.
    • In IIS Manager, expand server name, expand Web sites, and then click the Web site that you want to modify.
    • In Features view, double-click Directory Browsing.
    • In the Actions pane, click Enable.

    Method 2: To resolve this problem, follow these steps:

    • Start IIS Manager. To do this, click Start, click Run, type inetmgr.exe, and then click OK.
    • In IIS Manager, expand server name, expand Web sites, and then click the Web site that you want to modify.
    • In Features view, double-click Default Document.
    • In the Actions pane, click Enable.
    • In the File Name box, type the name of the default document, and then click OK.
    0 讨论(0)
  • 2021-02-19 03:30

    Using a text editor such as Notepad, open the applicationHost.config file in the following location:

    %windir%\system32\inetsrv\config\applicationHost.config
    

    Basically, the applicationHost.config had the handler section locked. It was

    <section name="handlers" overrideModeDefault="Deny" />
    

    changed it to

    <section name="handlers" overrideModeDefault="Allow" />
    

    and it works.

    0 讨论(0)
  • HTTP Error 500.19 - Internal Server Error

    This also happens if the .Net Framework Version is not correct or the Managed Pipeline Mode is not set properly.

    0 讨论(0)
提交回复
热议问题