Re: tracking user's wbesites
Can you provide somemore information? Who are the users? What websites (own managed or all over the world)? What information do you need to know...
Btw, I don't think it's possible if you are not using ASP.NET.
Re: tracking user's wbesites
hi
I need to write a web page classifier in which classifies the websites according to a sample of users which hits the website for example if a some users hits page 1 and then page 2 they are correlated
website are simpple 30 html pages from internet and users are about 2000..
I need to write a program simulate this algorithm...I can work with cookies but I dont know how to track a user with cookie and it is related to the webhost or page website
there is a server variable in httpReguest class but it is for ASP.NET anyway..
I worked on httpwebrequest but I dont know how to track the server varables
Re: tracking user's wbesites
So I assume these html pages are managed by yourself?
If I understand you correctly, you want to send some data of the webpage to your application?
To get the data, you either need tp place an image pixel of javascript on that page.
If ASP.NET is not an option, image pixel can not be used.
Using javascript, there a possible way I believe to achieve it, but it's definitily not easy. You need to create a WCF service wich can be invoked by the javascript using JSON. Use javascript to read the cookie, and send the information to the WCF service.