ASP elements
An ASP page looks like a standard HTML page with additional elements processed by the ASP engine. Typically, these elements create text that is inserted into the resulting document.
ASP elements
- Scripts: anything within a script tag <SCRIPT RUNAT=server> and </SCRIPT>, or more commonly between the <% and %> markers is interpreted as a script.
- The script language is usually VBScript, but may also be any language supported by the ActiveX scripting host, which are JScript and PerlScript.
- Expressions: anything between <%= and %> markers is evaluated by the ASP engine as an expression in the server environment.