I want to display total visitors visited monthly on vadmin panel ASP.NEt web app.
Loading
I want to display total visitors visited monthly on vadmin panel ASP.NEt web app.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vishal YelvePosted Jan 13, 2023, 9:07 AM
Open Global.asax
On your aspx.cs file
Aravind GovindarajPosted Jan 12, 2023, 4:09 PM
It's vary based on the business use case how and from where we are going to get this data. please find a few options
1. If you opt-in to google analytics, you can get the visitor count from google analytics API.
2. Either keep track of the visit count in DB or XML. Again here we need to check do we need to consider, if the same visitor comes do we need to consider new or old. If you want to consider it as old then take the visitor id from analytics, if you getting the same ignore it in the counter otherwise add +1. On top of this, this logic supposes to be fire and forgot call / async because it shouldn't affect system performance.
Hope this helps you. Thanks
Vikas PanwarPosted Jan 12, 2023, 1:25 PM
Hi ,Please check below url fro more information