Keep log file in ASP.NET

  • Thread starter Thread starter junglist
  • Start date Start date
J

junglist

Hi ,
i've implemented an asp website using VB.NET and want to:

- Keep a log file with all the visitors( refferal http, ip, time etc)
- Have that log file encrypted and decrypted through a web page interface.

Any suggestions would be really helpful

Thank you
 
Your kind of reinventing the wheel. IIS already keeps a logfile of requests
and details relating to requests. Ideally, you need to work out how to
render it via SSL of wrap access to it using adequate file permissions.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director
 
Yes i am aware of that. However this is part of an assignment for
extra credit and i was looking for some ideas to get me started. I am
not looking forward towards creating something really advanced
 
ah well, why dont you write an iHTTPModule that captures the information as
it passes through the response stream and records it in a file - you could
encrypt it with an MD5 hash and get the viewer to provide the seed for the
hash as a means of allowing the data to be unencrypted.

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director
 
Back
Top