ASP
Usage
- Allows scripting languages within HTML pages
- Most
ASP uses VBScript (the default language for ASP)
- ASP can also use JScript, JavaScript, ECMAScript, PerlScript
- Scripts in ASP pages run on the server; the resulting HTML is
sent to the client
- ASP : php interpreter :: VBScript : PHP language
- Apache::ASP provides
ASP
support for Apache (supports PerlScript, but not VBScript)
- For VBScript ASP on Apache, options include
commercial Apache modules from Chilisoft
& Halcyon
Syntax
- Specifying the scripting language
- <%@ language="vbscript" %>
- <%@ language="jscript" %>
- <%@ language="javascript"%>
- <%@ language="ecmascript" %>
- <%@ language="perlscript" %>