HttpResponse.AppendToLog(String) 方法

定义

将自定义日志信息添加到 Internet Information Services (IIS)日志文件。

public:
 void AppendToLog(System::String ^ param);
public void AppendToLog (string param);
member this.AppendToLog : string -> unit
Public Sub AppendToLog (param As String)

参数

param
String

要添加到日志文件的文本。

示例

以下示例演示如何将字符串追加到日志。

Response.AppendToLog("Page delivered");

Response.AppendToLog("Page delivered")
    

注解

若要允许在日志文件中记录指定的字符串,必须先为要在 IIS 中记录活动的站点启用 扩展日志记录属性 对话框的 URI 查询 选项。

若要在 IIS 6.0 中自定义扩展日志记录,请执行以下步骤:

  1. 在 IIS 管理器中,展开本地计算机节点、展开 Web 或 FTP 站点文件夹、右键单击 Web 或 FTP 站点,然后单击“ 属性”。

  2. 单击 “Web 或 FTP 网站 ”选项卡,然后选择“ 启用日志记录 ”复选框 ((如果尚未选择) )。

  3. “活动日志格式 ”框中,单击 “W3C 扩展日志文件格式”。

  4. 单击 “属性”

  5. 单击“ 高级 ”选项卡,选择要记录的属性,然后单击“ 确定”。

适用于

另请参阅