Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
To display the views for the last 7 days is this: @CounterService.GetValue(post.Id, 7)
How about the views today, should I make the 7 to 1? Thank you
Hi Rachelle,
If you want the views for the last 24 hours you'll use this:
@CounterService.GetValue(post.Id, 1)
If you want the views for a specific day you'll use:
@CounterService.GetValueBetween(post.Id, DateTime.Parse("2016-09-29 00:00"), DateTime.Parse("2016-09-29 23:59"))
// Herman
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to display views of today?
To display the views for the last 7 days is this: @CounterService.GetValue(post.Id, 7)
How about the views today, should I make the 7 to 1? Thank you
Hi Rachelle,
If you want the views for the last 24 hours you'll use this:
If you want the views for a specific day you'll use:
// Herman
is working on a reply...