| Syntax Basics | Special ASP blocks, and some rudimentary SSI support. | 1 |
| Server Directives | Set the script language, code page, or locale; or enable session
or transaction. | 1 |
| global.asa file | Create application- or session-level obejcts or values. | 1 |
| Application object | Stores values and objects, fires events, and provides locking, at
the application level. | 1 |
| Application.Contents
collection | Associative array that can be used to store simple values,
keyed by name. | 1 |
| Application.Lock method | Obtains exclusive write access to the Application object. | 1 |
| Application.StaticObjects
collection | Collection of application objects declared in the global.asa file. | 1 |
| Application.Unlock method | Releases exclusive write access to the Application object. | 1 |
| Session object | Stores persistant information for each user session. | 1 |
| Session.Abandon method | Closes the session, freeing up all associated
resources. | 1 |
| Session.CodePage property | Sets the code page (Windows character set) for a
session. | 1 |
| Session.Contents
collection | Collection of variables stored in the Session object. | 1 |
| Session.LCID property | Sets the locale ID for a session. | 1 |
| Session.SessionID property | Returns this session identifier. | 1 |
| Session.StaticObjects
collection | Collection of session objects declared in the global.asa file. | 1 |
| Session.Timeout property | Number of minutes of inactivity before this session times
out. | 1 |
| Server object | A collection of methods provided by the webserver. | 1 |
| Server.CreateObject method | Creates an instance of a COM server component. | 1 |
| Server.Execute method | Runs another ASP file as if it were a subroutine in the current
file. | 3 |
| Server.GetLastError method | Returns the last error as an ASPError object, for use in custom
error pages. | 3 |
| Server.HTMLEncode method | Escapes special HTML characters. | 1 |
| Server.MapPath method | Returns a full physical path, given a virtual or relative
path. | 1 |
| Server.ScriptTimeout
property | Sets the number of seconds a script is allowed to run. | 1 |
| Server.Transfer method | Begins executing another ASP file, with all the variables and
objects from the current file. | 3 |
| Server.URLEncode method | Escapes special URL characters. | 1 |
| Request object | The client request. | 1 |
| Request.BinaryRead method | Returns the requested number of binary bytes from those sent by
the client. | 1 |
| Request.ClientCertificates
collection | Properties of the client certificate, when one is sent by the
browser. | 1 |
| Request.Cookies collection | Potentially two-dimensional read-only collection of persistant
client values. | 1 |
| Request.Form collection | Data passed to the server via a POST form. | 1 |
| Request.QueryString
collection | Data passed to the server as a part of the URL, as with a GET
form. | 1 |
| Request.ServerVariables
collection | A collection of standard CGI values. | 1 |
| Request.TotalBytes
property | The size of the client request, used with BinaryRead. | 1 |
| Response object | The server response. | 1 |
| Response.AddHeader method | Adds a custom HTTP header. | 1 |
| Response.AppendToLog method | Appends text to the server log. | 1 |
| Response.BinaryWrite method | Sends binary data to the client. | 1 |
| Response.Buffer property | Enables a buffered response. | 1 |
| Response.CacheControl
property | Specifies an HTTP cache command. | 1 |
| Response.Clear method | Clears buffered response content. | 1 |
| Response.ContentType
property | Specifies an HTTP MIME type. | 1 |
| Response.Charset property | Adds the character set modifier to the HTTP MIME type. | 1 |
| Response.Cookies
collection | Potentially two-dimensional write-only collection of persistant
client values. | 1 |
| Response.End method | Flushes buffered content and ends script. | 1 |
| Response.Expires property | Specifies a relative HTTP content expiration. | 1 |
| Response.ExpiresAbsolute
property | Specifies an absolute HTTP content expiration. | 1 |
| Response.Flush method | Flushes buffered content. | 1 |
| Response.IsClientConnected
property | True if the client is still waiting for a response, or false if
not. | 1 |
| Response.PICS property | Specifies the RSAC PICS rating for the generated page. | 1 |
| Response.Redirect method | Instructs the browser to request the given URL. | 1 |
| Response.Status property | Sets the HTTP response status. | 1 |
| Response.Write method | Sends text to the client. | 1 |
| IStringList collection | A list of values associated with a Request collection variable name. | 1 |
| Internationalization | Provides fomatting and alphabets for various cultures. | 1 |