ASP AppendToLog Method

response object reference manual

Definition and Usage

The AppendToLog method adds strings to the end of the server log file.

You can call this method multiple times in the script file. Each time it is called, it appends the specified string to the log.

Syntax

response.AppendToLog string
Parameter Description
string Required. The text to be appended to the log file. (Cannot contain any comma characters)

Example

<%Response.AppendToLog "My log message"%>

response object reference manual