I hope to test html 5 Offline Web Applications.

The server needs to be configured to respond with the correct mime-type, “text/cache-manifest”.

Where can I find a shared asp.net hosting which support html5 ?

link|improve this question

71% accept rate
feedback

closed as off topic by josh3736, Muad'Dib, Jasper, Adam Wenger, derobert Nov 27 '11 at 10:39

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 3 down vote accepted

All hosts that support asp.net will be useful for you. As for HTML5, it depends on the user's browser and not your hosting.

For offline cache, you need a host which support web.config, if it's the situation, add the follow code inside your web.config file:

<configuration>
    <system.webServer>
        <staticContent>
            <mimeMap fileExtension=".manifest" mimeType="text/cache-manifest" />            
        </staticContent>
    </system.webServer>
</configuration>
link|improve this answer
In my mind, asp.net hosting don't support htaccess – Paul Nov 27 '11 at 3:18
The server needs to be configured to respond with the correct mime-type, “text/cache-manifest”. In shared asp.net hostong , how can do that? – Paul Nov 27 '11 at 3:19
see my changed comment, and Godaddy windows hosting plan (godaddy.com/hosting/web-hosting.aspx) – Gabriel Santos Nov 27 '11 at 3:44
When I access index.html, it display "The page cannot be displayed because an internal server error has occurred." – Paul Nov 27 '11 at 4:21
The offline cache are for mobile application? – Gabriel Santos Nov 27 '11 at 4:23
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.