解决方法
在IIS中,为虚拟目录创建应用程序时,单击应用程序的“配置”,然后编辑“应用程序映射”,即为html添加新映射.
或者,在您的web.config中,添加以下部分:
<httpHandlers> <remove verb="*" path="*.html" /> <add verb="*" path="*.html" type="System.Web.UI.PageHandlerFactory" /> </httpHandlers> <compilation> <buildProviders> <buildProvider extension=".html" type="System.Web.Compilation.PageBuildProvider" /> </buildProviders> </compilation>