Share via


Response.AppendToLog

The AppendToLog method adds a string to the end of the Web server log entry for the request. You can use it multiple times in one section of script. Each time the method is used, it appends the specified string to the existing entry.

Syntax

Response.AppendToLogstring

Parameters
  • string
    The text to append to the log file. Because fields in the log are comma-delimited, this string cannot contain any commas (,).
Remarks

To record the specified string in the log file, you must enable the URIQuery option of the Extended Properties property sheet for the site whose activity you want to log. To access this property sheet, from IIS Manager, right-click the Web site, and select Properties. On the Web Site tab, verify that Enable Logging is selected, and then click Properties. Note the default settings on the Extended Properties property sheet.

Example

The following example adds the text "content updated" to the log file:

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

Applies To

Response Object