IIS 8.0 ASP.NET and Error 500.19

后端 未结 9 1864
故里飘歌
故里飘歌 2020-12-08 06:58

I can\'t seem to get any ASP.NET sites to run under IIS8 on Windows 8. Under IIS Express they are fine, but I\'ve:

  1. Installed IIS8
  2. Installed ASP.NET 3
9条回答
  •  伪装坚强ぢ
    2020-12-08 07:24

    ASP.Net applications come pre-wired with a handlers section in the web.config.

    By default, this is set to readonly within feature delegation within IIS.

    Take a look in IIS Manager, under the Server nameFeature delegation. If Handler Mappings is set to readonly and your site web.configs have a handlers section, flip the value to read/write and see what happens.

    Worked for me when moving to Windows 8 / IIS 8 / ASP.Net MVC 4.

提交回复
热议问题