Hi there,
I am trying to create a log file on the client everytime an asp is being accessed.
How can I do that?
I know that creating file on the server is possible e.g.
<html>
<head><title>Write File</title></head>
<body>
Writing File
<%
Set MyFileObject=CreateObject("Scripting.FileSystemObject"
Set MyTextFile=MyFileObject.CreateTextFile("c:\log\test.txt"
MyTextFile.WriteLine("Hello There!"
MyTextFile.Close
%>
</body>
</html>
but what about creating it on the client????
The file can be of any extension. Preferbly of *.*log
I am trying to create a log file on the client everytime an asp is being accessed.
How can I do that?
I know that creating file on the server is possible e.g.
<html>
<head><title>Write File</title></head>
<body>
Writing File
<%
Set MyFileObject=CreateObject("Scripting.FileSystemObject"
Set MyTextFile=MyFileObject.CreateTextFile("c:\log\test.txt"
MyTextFile.WriteLine("Hello There!"
MyTextFile.Close
%>
</body>
</html>
but what about creating it on the client????
The file can be of any extension. Preferbly of *.*log