Programming
ASP in Javascript
VBScript is the default
scripting language that ASP is
coded in, so if you want to
specify a different scripting
language you have to state which
scripting language you will be
using at the very beginning of
your code. Below is the line of
code that must be your first line
of ASP code or else your page will
break and you'll get a boring
error message.
ASP Code:
<%@ Language="javascript"
'The rest of your ASP
Code....%> |
Remember, if this isn't your
first line of ASP code then
everything will break.
|
|
|
|