Take the community feedback survey now.

Anders Hattestad
Jan 7, 2011
  8625
(1 votes)

Using Statistics to show view count

In a current project I’m working on we needed a page view count. I first thought about making my own DDS table and add count values to that. But then I though about the Statistic tab in edit mode in EPiServer. What I wanted to do was to get the page count from that

image

Did some Google search about how this and did only find one forum post that pointed me in the right direction.

This code

Code Snippet
  1. DateTime start = DateTime.Now;
  2. TimeSpanQuery timeSpanQuery = new TimeSpanQuery();
  3. timeSpanQuery.Root = ((ITransformer)ClassFactory.CreateInstance(typeof(ITransformer), new object[0])).CreateURL(base.CurrentPage.PageLink.ID);
  4. timeSpanQuery.Interval = 5;
  5. timeSpanQuery.Stop = DateTime.Now;
  6. timeSpanQuery.Start = DateTime.Now.AddYears(-4);
  7. TimeSpanAnalyzerView view = new TimeSpanAnalyzerView();
  8. Uri address = new Uri("soap.tcp://localhost/TimeSpanAnalyzerView");
  9. Uri via = new Uri(VirtualPathUtility.AppendTrailingSlash(Settings.Instance.LogServiceUrl.ToString()) + "TimeSpanAnalyzerView");
  10. view.Destination = new EndpointReference(address, via);
  11. var data = view.GetHits(timeSpanQuery);

results in these 3 tables

image

and its the first part of the statistic tab information

And this code

Code Snippet
  1. RealTimeAnalyzerView view = new RealTimeAnalyzerView();
  2. Uri address = new Uri("soap.tcp://localhost/RealTimeAnalyzerView");
  3. Uri via = new Uri(VirtualPathUtility.AppendTrailingSlash(Settings.Instance.LogServiceUrl.ToString()) + "RealTimeAnalyzerView");
  4. view.Destination = new EndpointReference(address, via);
  5. ITransformer transformer = (ITransformer)ClassFactory.CreateInstance(typeof(ITransformer), new object[0]);
  6. DataSet data=view.Referrers(transformer.CreateURL(base.CurrentPage.PageLink.ID));

results in

image

that is the last part. There are other information that can be retrieved.

 

  1. data = view.LatestUsers(transformer.CreateURL(base.CurrentPage.PageLink.ID));

results in

image

and the

Code Snippet
  1. data = view.GetMaxHits(transformer.CreateURL(base.CurrentPage.PageLink.ID));

image

Here you will default get max 5 elements if you not change EPnMostVissitPagesMaxCount in the C:\Program Files (x86)\EPiServer\Shared\Services\Log Service\EPiServer.LogService.exe.config

Code Snippet
  1. <sendListener type="EPiServer.Log.Analyzer.RealTimeAnalyzer, EPiServer.Log.Analyzers" method="StoreMessage">
  2.     <!-- The view for the analyzer -->
  3.     <view type="EPiServer.Log.Analyzer.RealTimeAnalyzerView, EPiServer.Log.Analyzers" protocol="TCP/SOAP" endpoint="soap.tcp://localhost/RealTimeAnalyzerView"/>
  4.     <!-- Maximum pages in the published pages queue -->
  5.     <EPnPublishedPagesMaxCount>5</EPnPublishedPagesMaxCount>
  6.     <EPnMostVissitPagesMaxCount>100</EPnMostVissitPagesMaxCount>
  7. </sendListener>

It can seems that the TimeSpanAnalyzerView methods persists and that the RealTimeAnalyzerView is cleared when the server resets. So if you want to have a count of how many times users have accessed on page this is the code that will return that

Code Snippet
  1. TimeSpanQuery timeSpanQuery = new TimeSpanQuery();
  2. timeSpanQuery.Root = ((ITransformer)ClassFactory.CreateInstance(typeof(ITransformer), new object[0])).CreateURL(base.CurrentPage.PageLink.ID);
  3. timeSpanQuery.Interval = 5;
  4. timeSpanQuery.Stop = DateTime.Now;
  5. timeSpanQuery.Start = DateTime.Now.AddYears(-4);
  6. TimeSpanAnalyzerView view = new TimeSpanAnalyzerView();
  7. Uri address = new Uri("soap.tcp://localhost/TimeSpanAnalyzerView");
  8. Uri via = new Uri(VirtualPathUtility.AppendTrailingSlash(Settings.Instance.LogServiceUrl.ToString()) + "TimeSpanAnalyzerView");
  9. view.Destination = new EndpointReference(address, via);
  10. var data = view.GetHits(timeSpanQuery);
  11. string nrofVisits = "";
  12. if (data != null && data.Tables["Total"] != null && data.Tables["Total"].Rows.Count > 0)
  13.     nrofVisits = "" + data.Tables["Total"].Rows[0][0];
  14. if (nrofVisits != "")
  15.     NrOfUnikVisits.Text = string.Format(NrOfUnikVisits.Text, nrofVisits);
Code Snippet
  1. <asp:Literal ID="NrOfUnikVisits" runat="server" Text="{0} visninger" EnableViewState="false" />

image

Jan 07, 2011

Comments

Magnus Rahl
Magnus Rahl Jan 11, 2011 10:45 AM

I used this for ranking the top visited pages as you might have gathered from the forum thread. However, apparently this functionality is being deprecated in a future version of EPiServer, or have I been misinformed?

Please login to comment.
Latest blogs
Optimizely CMS Mixed Auth - Okta + ASP.NET Identity

Configuring mixed authentication and authorization in Optimizely CMS using Okta and ASP.NET Identity.

Damian Smutek | Oct 27, 2025 |

Optimizely: Multi-Step Form Creation Through Submission

I have been exploring Optimizely Forms recently and created a multi-step Customer Support Request Form with File Upload Functionality.  Let’s get...

Madhu | Oct 25, 2025 |

How to Add Multiple Authentication Providers to an Optimizely CMS 12 Site (Entra ID, Google, Facebook, and Local Identity)

Modern websites often need to let users sign in with their corporate account (Entra ID), their social identity (Google, Facebook), or a simple...

Francisco Quintanilla | Oct 22, 2025 |

Connecting the Dots Between Research and Specification to Implementation using NotebookLM

Overview As part of my day to day role as a solution architect I overlap with many clients, partners, solutions and technologies. I am often...

Scott Reed | Oct 22, 2025

MimeKit Vulnerability and EPiServer.CMS.Core Dependency Update

Hi everyone, We want to inform you about a critical security vulnerability affecting older versions of the EPiServer.CMS.Core  package due to its...

Bien Nguyen | Oct 21, 2025

Speeding Up Local Development with a Fake OpenID Authentication Handler

When working with OpenID authentication, local development often grinds to a halt waiting for identity servers, clients, and users to be configured...

Eric Herlitz | Oct 20, 2025 |