沒有為副檔名“.html”註冊的生成提供程式

Kenyep發表於2013-09-08

asp.net提示“

沒有為副檔名“.html”註冊的生成提供程式...

 

解決辦法,修改web.config檔案:

<compilation debug="true">
      <buildProviders>
        <add extension=".html" type="System.Web.Compilation.PageBuildProvider" />  
      </buildProviders>
</compilation>
<system.webServer>
<handlers>
      <add name="RewriteURL" path="*.html" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv2.0,bitness32"/>
</handlers>
</system.webServer>

 

相關文章