Click here to Skip to main content
Licence 
First Posted 20 Jan 2004
Views 199,215
Bookmarked 61 times

Easy to use Hit Counter

By | 22 Jan 2004 | Article
An ASP.NET Hit Counter control that's *very easy* to use.

Sample Image - EasyHit.jpg

Introduction

I wanted to create a hit counter for my ASP.NET applications, but I wanted it to be very easy to deploy. I did not want to have to upload a set of images, set up database access or anything like that. I wanted something that I could add to the Visual Studio toolbox and then simply drag and drop it onto my pages.

The Solution

I have designed a custom control that renders an HTML table with each cell being one of the digits of the counter. The style of the counter is totally configurable from within the Visual Studio designer. The picture above shows an example of the counter in action.

The number of hits is stored in a text file that will be automatically created when the page is hit for the first time. You can choose to increment the value stored in that file each time the page is hit, or you can choose a delay and in that case the file will only be updated at the interval you have specified.

Because the value is stored in a text file, if you update your application, the page count is not lost. If there was no text file and we only stored the counter as an Application variable, you would reset the counter to zero when you updated your site.

Here are the most important properties of the control:

  • Visible

    Determines if the counter is shown on the page or not. If the value is True (the default) then the user can see the counter on the page. If the value is set to False then the counter is incremented but the counter is not displayed on the page.

  • Padding

    The minimum number of digits to show, it defaults to 5 so that 3 hits displays as 00003.

  • WriteDelay

    The interval at which the text file is updated. In the Visual Studio designer, this is in the format hh:mm:ss. If you specify a zero value (the default, i.e. 00:00:00) then the text file is updated each time the page is accessed.

  • TextFileName

    The file where the hit count is stored on the server, relative to the application root. If you want to put this file in a sub-folder, you can do so (e.g. bin\count.txt would store the file in the application bin folder instead of the root).

All of the other properties are just for applying colors and formatting and they all should work in the normal way.

Detail

Rendering the control is surprisingly simple. Firstly, I have overridden the TagKey property of the WebControl to tell it to send a table tag rather than the default span tag.

Next, I add the table attributes, like borders and spacing and then send the start tag to the browser. A foreach loop adds each column to the table with the digit included. Finally, the end tag is sent and we’re done.

protected override void Render(HtmlTextWriter output)
{    
    Attributes.Add("cellSpacing","1");
    Attributes.Add("cellPadding","1");
    Attributes.Add("border","1");
    Attributes.Add("borderWidth",BorderWidth.ToString());
    Attributes.Add("borderColor",formatColour(BorderColor));

    base.RenderBeginTag(output);
        
    output.Write("<TR>");
    foreach (char c in mCount.ToString().PadLeft(mPadding,'0'))
        output.Write("<TD align=\"middle\">"+c+"</TD>");
    output.Write("</TR>");

    base.RenderEndTag(output);        
}

The counter is incremented in the overridden OnLoad method. This code first checks to see if the Context is null. This tells us if the control is being shown in the Visual Studio IDE or not. I'm also checking to see if the page is a postback. In either case, the counter is not incremented. Otherwise the hit counter is increased by one.

If you want to use this control, download the source code and add a reference to DSHHitCounter.dll to your ASP.NET application. If you add the HitCounter control to your toolbox, you can then simply drag and drop the control onto an ASPX page in the designer and immediately run it. It doesn’t get much easier than that.

Notes

This control requires that the application has FileIOPermissionAccess.Write, FileIOPermissionAccess.Append and FileIOPermissionAccess.Read rights to the folder hosting it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

David S Hobbs

Web Developer

United Kingdom United Kingdom

Member

I have been developing software on various platforms for over 14 years. For my sins I recently spent two years managing a development team at some large Redmond-based software company....
 
I'm now enjoying working as a freelance software developer from home, although I seem to be working harder than ever. My main area of work is ASP.Net development with C#.
 
I like to take as many holidays as possible, but always end up taking a book on software development with me. I'm not happy unless I'm learning something new.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHow to apply it in different pages and different count Pinmembergeminigentle7:47 18 Mar '12  
QuestionRegarding Hit Counter Pinmemberritesh27120:42 8 Dec '09  
QuestionThe directive is missing a 'src' attribute PinmemberJFercan16:35 16 Oct '08  
QuestionSeto because when the property value to 10 he does not return that value the counter? PinmemberLuizItatiba8:29 1 Oct '08  
QuestionSessionID Question PinmemberPhantom20812:41 21 Nov '07  
AnswerRe: SessionID Question PinmemberPhantom20818:57 21 Nov '07  
Generalcounter not increasing Pinmemberfyffes22:04 7 Nov '07  
QuestionHyperlink Gridview Hit counter Pinmemberchrisyannie17:07 14 Sep '07  
QuestionHit Counter on page with multiview not working? Pinmembergsomavia7:47 25 Jan '07  
QuestionVisual Studio 2005 Pinmember007G15:29 26 Nov '06  
QuestionHow to log image clicks using C# Pinmemberhsnmz5:28 6 Oct '06  
Generalhelp about counter Pinmemberxecex6:34 23 Jul '05  
GeneralRe: help about counter PinmemberDavid S Hobbs21:31 24 Jul '05  
GeneralCounter not increment PinmemberSyerwinLee15:50 12 Jul '05  
GeneralRe: Counter not increment PinmemberDavid S Hobbs22:08 12 Jul '05  
GeneralRe: Counter not increment PinmemberSyerwinLee20:50 14 Jul '05  
GeneralRe: Counter not increment Pinmemberravimama0:58 14 Apr '07  
GeneralFix for Counter Reset to Zero bug PinsussAnonymous6:04 23 Jun '05  
GeneralRe: Fix for Counter Reset to Zero bug PinsussAnonymous6:05 23 Jun '05  
GeneralCounter Increment PinmemberSyed Anis5:17 13 May '05  
GeneralRe: Counter Increment PinmemberDavid S Hobbs9:13 15 May '05  
GeneralReset to zero... PinmemberSyerwinlee21:56 2 May '05  
GeneralRe: Reset to zero... PinmemberDavid S Hobbs1:01 3 May '05  
GeneralRe: Reset to zero... PinmemberSyerwinLee0:45 13 Jun '05  
GeneralRe: Reset to zero... PinmemberSyerwinLee16:43 14 Jun '05  
Hi David,
 
I have tried out the solution u provided.
 
Now the hit counter will not increased by one in the same browser or reset to zero when i refresh my page, or click on a hyperlink, or click on a button that does postback or no postback.
 
I replaced the onLoad method with the following code:
 
protected override void OnLoad(EventArgs e)
{

if (Context != null && !Page.IsPostBack)
{
if (Page.Session["DSHalreadycounted"]==null)
{
//increment the counter here
Value = increment();
Page.Session["DSHalreadycounted"]="Y";
}

}

Value = getCounterFromFile();
base.OnLoad(e);
 
}
 

I have also tried to replace the Value property with the code u provided, but it does not work out. Anyhow, the above code had solved my problems.
 
Thanks alot David! U r cool!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120528.1 | Last Updated 23 Jan 2004
Article Copyright 2004 by David S Hobbs
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid