Muhammed Ahmed
Muhammed Ahmed

Reputation: 13

Tracking online visitors per page in a website

Is there a way to track the number of online visitors for each page in my website? I want to pop something like "There are 6 people viewing this page right now" when a visitor enters this page.

Upvotes: 1

Views: 1119

Answers (2)

tucaz
tucaz

Reputation: 6684

You could build something not much complex using SignalR and javascript.

A javascript in each page would inform the SignalR service that someone is in there and the server would aggregate it and broadcast it to everyone that is in the same page.

Upvotes: 2

Related Questions