Logging in asp.net

  • Thread starter Thread starter Bart Schelkens
  • Start date Start date
B

Bart Schelkens

Hi,

i have this website and my boss wants to log every click in a table in the
database.
It was not a problem doing that.
Except now he also wants to log every click on a hyperlink.
I have these <a href>-tags that open a pdf-file.
He wants to have that logged as well.
Does anyone know how to do this?

Thanks in advance.
 
Under your web site in IIS, where you enable logging, it allows you to
specify the save format. One of the choices is to ODBC, which you can
configure to use SQL Server, or even Access. That way, all requests will be
writen to a DB, you only need to read the values out.


or - you could use log parser and read from your standard IIS logs.

http://www.microsoft.com/downloads/...familyid=8cde4028-e247-45be-bab9-ac851fc166a4

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director
 
Back
Top