
April 24th, 2003, 08:41 AM
|
 |
Web Developer
|
|
Join Date: Oct 2001
Location: Pennsylvania
Posts: 171
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Quote: <% @ Language = "VBScript" %>
<html>
<body>
Hello
<%=World!%>
</body>
</html> |
Change <%=World!%> to <%="World!"%>, as it is a non-numeric literal, and requires quotes.
If that doesn't solve your problem, try using the full
<%
Response.Write("World!")
%>
And you can also remove the @Language directive, since VBScript is the default, and you are using it in your entire script.
|