I am a complete novice to Classic ASP and have been trying to set it up, but I keep running into an error message. I am using IIS7 on Windows 7 and have made sure that IIS is installed, etc. I have created an application that resides in C:\inetpub\wwwroot
and in that directory I have a file called page.asp
. However, whenever I go to my browser which is Chrome and type in localhost
it shows me the blue IIS page but when I type in localhost/page.asp
it gives me the following error message:
An error occurred on the server when processing the URL. Please contact the system administrator
I cannot figure out what I am doing wrong. I have made sure that ASP and IIS are both enabled, and the code in the page is a simple
<html>
<%Response.Write("Hello world")%>
</html>
Can you please help me?