System.Web Namespace HttpResponse Class
Adds custom log information to the IIS log file.
[ VB ]
Public Sub AppendToLog ( _
ByVal param As String _
)
[ C# ]
public void AppendToLog (
string param
);
[ C++ ]
public: void AppendToLog (
String* param
);
[ JScript ]
public function AppendToLog (
param : String
);
- param
- The text to add to the log file.
The following example appends a string to the log.
Response.AppendToLog ( "Page delivered" );
Response.AppendToLog ( "Page delivered" ) |
|
C# |
VB |
HttpResponse Members