I am developing a logging system that detects when the hyperlinks stored in an html webpage (in turn, stored into a C# WebBrowser object) are clicked.
I am using the NewWindow event, but in order for the event to be logged, the window must be closed (ie: I can't log more than one click for the same hyperlink). I would like to record every single click, regardless of the fact that the window the hyperlinks refer to is open or not.
Any ideas about how to do it?
Cheers