Click here to Skip to main content
15,898,538 members
Articles / Web Development / ASP.NET
Article

Easy to use Hit Counter

Rate me:
Please Sign up or sign in to vote.
4.54/5 (39 votes)
22 Jan 20043 min read 314.8K   12.6K   64   55
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.

C#
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



Comments and Discussions

 
GeneralReset to zero... Pin
Member 19218272-May-05 21:56
Member 19218272-May-05 21:56 
GeneralRe: Reset to zero... Pin
User 2573283-May-05 1:01
User 2573283-May-05 1:01 
GeneralRe: Reset to zero... Pin
Member 192182713-Jun-05 0:45
Member 192182713-Jun-05 0:45 
GeneralRe: Reset to zero... Pin
Member 192182714-Jun-05 16:43
Member 192182714-Jun-05 16:43 
GeneralFantastic but things to consider Pin
Lord of Scripts16-Mar-05 21:37
Lord of Scripts16-Mar-05 21:37 
GeneralRe: Fantastic but things to consider Pin
User 25732817-Mar-05 7:12
User 25732817-Mar-05 7:12 
GeneralHit Counter Resets to Zero Pin
dellostj14-Mar-05 7:06
dellostj14-Mar-05 7:06 
GeneralRe: Hit Counter Resets to Zero Pin
User 25732816-Mar-05 2:07
User 25732816-Mar-05 2:07 
Generalhitcounter doesn't increase Pin
Ma ca rong27-Jan-05 16:57
Ma ca rong27-Jan-05 16:57 
GeneralRe: hitcounter doesn't increase Pin
User 25732830-Jan-05 23:48
User 25732830-Jan-05 23:48 
GeneralRe: hitcounter doesn't increase Pin
Ma ca rong1-Feb-05 16:53
Ma ca rong1-Feb-05 16:53 
GeneralEasy? very very easy! Pin
SergioCossa2-Jul-04 4:13
SergioCossa2-Jul-04 4:13 
GeneralSlight change to support Netscape and Opera Pin
User 25732823-Jan-04 1:12
User 25732823-Jan-04 1:12 
GeneralNew improved version Pin
User 25732822-Jan-04 5:34
User 25732822-Jan-04 5:34 
QuestionProblem scaling? Pin
Brian Lowe21-Jan-04 23:07
Brian Lowe21-Jan-04 23:07 
AnswerRe: Problem scaling? Pin
User 25732822-Jan-04 0:19
User 25732822-Jan-04 0:19 
AnswerRe: Problem scaling? Pin
Arjan Einbu23-Jan-04 15:20
Arjan Einbu23-Jan-04 15:20 
Generaln Another suggestion Pin
NormDroid21-Jan-04 20:41
professionalNormDroid21-Jan-04 20:41 
GeneralGreat! One suggestion... Pin
Carl Mercier21-Jan-04 15:50
Carl Mercier21-Jan-04 15:50 
GeneralRe: Great! One suggestion... Pin
Matt Berther21-Jan-04 19:52
Matt Berther21-Jan-04 19:52 
GeneralRe: Great! One suggestion... Pin
User 25732821-Jan-04 20:54
User 25732821-Jan-04 20:54 
GeneralRe: Great! One suggestion... Pin
Carl Mercier22-Jan-04 4:20
Carl Mercier22-Jan-04 4:20 
GeneralRe: Great! One suggestion... Pin
User 25732822-Jan-04 4:37
User 25732822-Jan-04 4:37 
GeneralRe: Great! One suggestion... Pin
Carl Mercier22-Jan-04 4:41
Carl Mercier22-Jan-04 4:41 
GeneralRe: Great! One suggestion... Pin
User 25732822-Jan-04 4:50
User 25732822-Jan-04 4:50 

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

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