Latest web development tutorials

ASP AppendToLog method

Response Object Reference Complete Response Object Reference

AppendToLog method adds a string to the end of the server log file. You can call this method multiple times in a script file. Every time when it is called, it will append the specified string to the log.

grammar

response.AppendToLog string

参数 描述
string 必需。向日志文件追加的文本(不能包含任何逗号字符)。


Examples

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


Response Object Reference Complete Response Object Reference