How to change the default page asp language from JScript to VBScript
From
http://www.w3schools.com/asp/asp_syntax.asp
VBScript
You can use several scripting languages in ASP. However, the default
scripting language is VBScript:
<html>
<body>
<%
response.write("Hello World!")
%>
</body>
</html>
The example above writes "Hello World!" into the body of the document.
JavaScript
To set JavaScript as the default scripting language for a particular page
you must insert a language specification at the top of the page:
<%@ language="javascript"%>
<html>
<body>
<%
Response.Write("Hello World!")
%>
</body>
</html>
Note: Unlike VBScript - JavaScript is case sensitive. You will have to write
your ASP code with uppercase letters and lowercase letters when the language
requires it.
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website:
http://trevorl.mvps.org/
----------------------------------------