我正在尝试在Windows 8上运行IIS,但IIS发出错误。错误如下。
“执行此操作时出错。
详细说明: 文件名: \ \ C:\的Windows \ Microsoft.NET \ Framework64 \ v4.0.30319 \ CONFIG \ web.config中 行号:24 错误:无法读取配置节'fullTrustAssemblies' 它缺少一个部分声明。“
当我单击应用程序池或“站点”时,IIS会出错。
答案 0 :(得分:2)
用
替换块<configuration>
<system.webServer>
<system.web>
<fullTrustAssemblies>
<clear/>
</fullTrustAssemblies>
</system.web>
</system.webServer>
</configuration>
从应用程序中删除对完全信任程序集的所有引用。 IIS附带完整的MSDN文档,它已经为此提供了解决方案