 |
ASP FAQ |
What scripting languages does ASP support? How can I specify what language my script is written in?
ASP provides native support for both VBScript and JScript. You can specify your script's language by placing either <%@ language = vbscript %> or <%@ language = jscript %> on the first line of your script.
|