Problem in running .net framework 4.0 website on iis 7.0

后端 未结 12 618
忘掉有多难
忘掉有多难 2020-12-24 00:22

Hey I got problem in running .NET framework 4.0 website on IIS7.0. the error I got is like:

HTTP Error 404.2 - Not Found \

12条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-24 00:24

    In my case, the problem was more severe: turns out asp.net was not correctly registered.

    This response worked fine.

    simply ran the following command at the command prompt

    %windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i
    

    If I had been on a 32 bit system, it would have looked like the following:

    %windir%\Microsoft.NET\Framework\v4.0.21006\aspnet_regiis.exe -i
    

提交回复
热议问题