我在哪里可以找到支持html5的共享asp.net托管

时间:2011-11-27 02:53:29

标签: web-hosting

我希望测试html 5离线Web应用程序。

需要将服务器配置为使用正确的mime类型“text / cache-manifest”进行响应。

哪里可以找到支持html5的共享asp.net托管?

1 个答案:

答案 0 :(得分:2)

支持asp.net的所有主机都对您有用。 对于HTML5,它取决于用户的浏览器而不是您的托管。

对于离线缓存,您需要一个支持web.config的主机,如果是这种情况,请在您的web.config文件中添加以下代码:

<configuration>
    <system.webServer>
        <staticContent>
            <mimeMap fileExtension=".manifest" mimeType="text/cache-manifest" />            
        </staticContent>
    </system.webServer>
</configuration>