I am running IIS 5.1 and have been learning some ASP. I have written a small code as a "test" page as follows:
<HTML>
<HEAD>
<TITLE>Hello, World !</TITLE>
</HEAD>
<BODY>
<%= "Hello, World!" %>
</BODY>
</HTML>
When I try save this as blah.asp, and try to access it, i get the folloing error messasge in browser:
The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be displayed.
HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
Technical Information (for support personnel)
* Error Type:
Microsoft VBScript compilation (0x800A0400)
Expected statement
/web/~/test/asp/index.asp, line 7
normal html pages display just fine, even with the .asp extension.
how can I fix this??
Gary
<HTML>
<HEAD>
<TITLE>Hello, World !</TITLE>
</HEAD>
<BODY>
<%= "Hello, World!" %>
</BODY>
</HTML>
When I try save this as blah.asp, and try to access it, i get the folloing error messasge in browser:
The page cannot be displayed
There is a problem with the page you are trying to reach and it cannot be displayed.
HTTP 500.100 - Internal Server Error - ASP error
Internet Information Services
Technical Information (for support personnel)
* Error Type:
Microsoft VBScript compilation (0x800A0400)
Expected statement
/web/~/test/asp/index.asp, line 7
normal html pages display just fine, even with the .asp extension.
how can I fix this??
Gary