当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP AppendToLog 方法
The AppendToLog method adds a string to the end of server log entry for this request. You can call this method multiple times in a script. Each time it is called it will append the specified string to the log entry.
AppendToLog指令可以向服务器日志文件入口中添加一个字符串。你可以在脚本中重复使用这个指令。每次调用这个指令时,它都将在日志入口中添加一个指定的字符串。
response.AppendToLog string |
Parameter 参数 | Description 描述 |
---|---|
string | Required. The text to append to the log file (cannot contain any comma characters) 必用参数. 在日志文件中添加一条文本(不可以使用逗号“,”分割符) |
<%Response.AppendToLog "My log message"%> |