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

Popular posts from this blog

Connected and disconnected architecture in ADO.Net with Example

Connected Architecture of ADO.NET The architecture of ADO.net, in which connection must be opened to access the data retrieved from database is called as connected architecture. Connected architecture was built on the classes connection, command, datareader and transaction.  Connected architecture is when you constantly make trips to the database for any CRUD (Create, Read, Update and Delete) operation you wish to do. This creates more traffic to the database but is normally much faster as you should be doing smaller transactions. Disconnected Architecture in ADO.NET The architecture of ADO.net in which data retrieved from database can be accessed even when connection to database was closed is called as disconnected architecture. Disconnected architecture of ADO.net was built on classes connection, dataadapter, commandbuilder and dataset and dataview. Disconnected architecture is a method of retrieving a recor

HTTPHandler and HTTPModule in ASP.NET

If you want to implement pre-processing logic before a request hits the IIS resources. For instance you would like to apply security mechanism, URL rewriting, filter something in the request, etc. ASP.NET has provided two types of interception HttpModule and HttpHandler .   The web server examines the file name extension of the requested file, and determines which ISAPI extension should handle the request. Then the request is passed to the appropriate ISAPI extension.  For Example When an .aspx page is requested it is passed to ASP.Net page handler. Then Application domain is created and after that different ASP.Net objects like Httpcontext, HttpRequest, HttpResponse. HTTPModule: -    It's just like a filter. The Modules are called before and after the handler executes . -    HTTP Modules are objects which also participate the pipeline but they work before and after the HTTP Handler does its job, and produce additional services within the pipeline -  

ASP.NET Page Life Cycle with example

In this article, we are going to discuss the different methods and order they are executed during the load of an .aspx web page. Methods Description Page_PreInit Before page Initialization Page_Init Page Initialization LoadViewState View State Loading LoadPostData Postback Data Processing Page_Load Page Loading RaisePostDataChangedEvent PostBack Change Notification RaisePostBackEvent PostBack Event Handling Page_PreRender Page Pre Rendering Phase SaveViewState View State Saving Page_Render Page Rendering Page_Unload Page Unloading PreInit : The entry point of the page life cycle is the pre-initialization phase called “PreInit”. You can dynamically set the values of master pages and themes in this event. You can also dynamically create controls in this event.  Init : This event fires after each control h