Skip to main content

Page Hit Counter using the Application in ASP.NET

It is sometimes useful to display the number of visits a page on a Web site has experienced using a counter that's displayed as part of the page's content. This is a very simple hit counter / page counter to see how many people have visited a web page if you want to show it on a web page. This is a simple using the Application in ASP.NET

Application Object

The Application object is used to store and access variables from any page, just like the Session object. The difference is that ALL users share ONE Application object (with Sessions there is ONE Session object for EACH user).
The Application object holds information that will be used by many pages in the application (like database connection information). The information can be accessed from any page. The information can also be changed in one place, and the changes will automatically be reflected on all pages.
Global.aspx
The global.asax file is used to add application level logic & processing. Note that the global.asax does not handle any UI related processing, nor does it process individual page level requests. It basically controls the following events...
Application_Start
Application_End
Session_Start
Session_End

When an web page load, this event occurs only one time in an application’s life cycle. It occurs again when you restart the IIS. When IIS reset then application count also reset to zero (0). It’s the best place to count number of visitors. 


 void Application_Start(object sender, EventArgs e)
        {
            // Code that runs on application startup
            Application["hit"] = 0;
        }

HTML

Used label to show the no of hit in web page



<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    </div>
    </form>
</body>
</html>



Code



        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                Application["hit"] = Convert.ToInt32(Application["hit"].ToString()) + 1;
            }
            Label1.Text = "Count = " + Convert.ToInt32(Application["hit"].ToString());
        }




Download



Comments

  1. I have not used any ASP.Net but it looks simple,i will definitely try it.Thanks for sharing.Adding hit counter to your site is very important.It not only reports your traffic numbers, but also gives you valuable information that will help you understand the behavior of your site visitors better and so perform outstanding customer intelligence.Simple hit counter tools are available in order to help you track the activities of customers instantly without any hassle.
    http://counterforsite.com/simple-hit-counter/

    ReplyDelete
  2. Simple and neat !! This is what I'm searching for !! Awesome work..

    Keep posting :))

    ReplyDelete
  3. Thanks a lot... This is simple. Saved a hell lot of time for me... Keep posting

    ReplyDelete
  4. If page loading fails in the middle of operation?

    ReplyDelete
  5. This comment has been removed by a blog administrator.

    ReplyDelete
  6. Hi Sani,

    When you restart your IIS count also get restarted

    ReplyDelete
  7. This is so elegant and logical and clearly explained. Brilliantly goes through what could be a complex process and makes it obvious.

    biztalk training courses

    ReplyDelete
  8. This is an amazing blog,it gives very helpful messages to us...I also want to share information about Best MicroNutrients Company in India

    ReplyDelete

Post a Comment