how to record the webpage browsed?

  • Thread starter Thread starter networm
  • Start date Start date
N

networm

HI all,

I want to programmatically record the webpage that are browsed in IE 6.0 or
Firefox into a log file... How to do that in VB, or VC? What is the easiest
and fastest way of doing so?

Thanks a lot!

L
 
All of the visited web pages are supposed to be in the History folder.
You'll just have to figure out how to copy them to your log file. (But why
would you want to do that when they are already there in the History
folder?)
 
HI all,

I want to programmatically record the webpage that are browsed in IE 6.0 or
Firefox into a log file... How to do that in VB, or VC? What is the easiest
and fastest way of doing so?

Are you looking to extract viewing history for analysis? Try these two articles
from SecurityFocus, which examine several solutions:
http://www.securityfocus.com/infocus/1827
http://www.securityfocus.com/infocus/1832

--
Cheers,
Chuck
http://nitecruzr.blogspot.com/
Paranoia is not necessarily a bad thing - it's a normal response from experience.
My email is AT DOT
actual address pchuck sonic net.
 
Jerry said:
All of the visited web pages are supposed to be in the History folder.
You'll just have to figure out how to copy them to your log file. (But why
would you want to do that when they are already there in the History
folder?)

where is the History folder? thx
 
The history folder only holds shortcuts to pages visited in the last 20
days, not all pages visited.

This would have to be a client-based application and all you'd need to do is
take the client-side scripting document.location and append it to a log
file.
 
Back
Top