I have just set up IIS
on Win 10
.
I have a page called hello.asp
:
<%@ language="vbscript"%>
<html><body>
<%
response.write("Hello world! - VBScript in IIS")
%>
</body></html>
What do I need to do in the IIS Manager to get this page to work?
When I browse to the page I get:
HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
I don't understand why this handling is not automatically configured when you install IIS.