Forum Moderators: DixonJones

Message Too Old, No Replies

Tracking movements and clicks mouse of visitors?

online tools

         

mikh

2:13 am on May 23, 2006 (gmt 0)



What do you use?

oxbaker

4:09 pm on May 23, 2006 (gmt 0)

10+ Year Member



i dotn track movements of a mouse but i track every click on every site i have. we use what's called a "GO" page. Bascially its a page that everything passes through. It takes two parameters (Source and Destination) and it logs the source, ip, destination, and time.

it works like this.

your on page a.aspx you want to go to page b.aspx instead of going <a href="b.aspx"> i use this
<a href="go.aspx?src=a.aspx&dst=b.aspx">

this allows a to go to GO.aspx (logging everthing there) then GO.aspx directs the user to whatever page was specified in the dest variable (in this case b.aspx)

hth,
mcm