[thelist] logging in ASP/IIS
Scott Dexter
sgd at ti3.com
Tue May 30 16:35:01 2000
you could write your own logging;
Sub AppendLog(byval mesg, byval filename)
Dim ForAppending,fs,a,logstr
' drop the code, mesg to a file
ForAppending = 8
filename = "D:\" & filename
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile(filename, ForAppending, True)
logstr = Now & ":" & mesg
a.WriteLine(logstr)
a.Close
Set a = Nothing
Set fs = Nothing
End Sub
or, like Danny mentioned, head over to the MMC and turn on NCSA extended
logging; one of the parameters you can choose to include is the query string
(not on by default)....
sgd
--
think safely
> -----Original Message-----
> From: aardvark [mailto:roselli@earthlink.net]
> probably a silly question...
>
> let's say i have a site, like, say, evolt.org... every page
> is served off
> default.asp with variables appended to the URL... but the site has
> 30,000 "pages"...