Click here to Skip to main content
15,892,005 members
Articles / Programming Languages / C#

Creating custom headers and footers in Application level events using global.asax

Rate me:
Please Sign up or sign in to vote.
1.38/5 (4 votes)
6 Oct 2005CPOL1 min read 34.7K   8   3
An example of how to create custom headers and footers in Application level events using the global.asax file.

Sample Image - CustomHeaderFooter.jpg

Introduction

This is a very simple example that shows how to use the global.asax file to create custom header and footers for all your pages.

Background

The Global.asax file contains a number of events that happens when any ASP.NET application is running. In this example, I am using the "Application_BeginRequest" and "Application_EndRequest" events to show how to create a custom header and footers. Application_BeginRequest gets fired whenever the ASP.NET page gets a new request to handle. It happens before any page, Web Service, or any HTTP handler gets the opportunity to process the request. Therefore, I am using it to create my custom header here. Application_EndRequest gets fired whenever the request is complete. We can control the application response before handing the event to HTTP handlers. Therefore, I am using it to create my custom footer.

Code

The code is very, very simple. Therefore, I did't bother to include my test application. Basically, do the following steps:

  1. Create a new ASP.NET application using C#.
  2. Visual Studio creates the global.asax file for you.
  3. Replace the code for the Application_EndRequest and Application_StartRequest events with the code below:
  4. C#
    protected void Application_BeginRequest(Object sender, EventArgs e)
    {
    
        Response.Write("<H1> Welcome to my website! </H1>" );
        Response.Write(" This is my header that comes from Application level " );
        Response.Write("<HR>");
    
    }
    
    protected void Application_EndRequest(Object sender, EventArgs e)
    {
        int yearDate ;
        string dateStr;
        yearDate = System.DateTime.Now.Year;
        dateStr = yearDate.ToString();
        Response.Write("<HR>");
        Response.Write("Copyright 2002-" + dateStr );
        Response.Write("This is my customer footer that  from Application level" );
        Response.Write("<HR>");
    
    }

That is it. Of course, don't forget to keep the layout of your form to "FlowLayout". Run it, and you will get the custom header and footer as in the image above. However, nothing is stopping you from creating a very fancy header and footer and replacing my code with them.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Australia Australia
Rahman is a very experienced software developer with 10+ years of experience in different programming languages. Has experience in both Web Application Development and Desktop Line of Business Application development.

At the moment his area of interest are .Net both C# and VB.Net, Client side UI frameworks like AngularJs, Bootstrap, etc. Application Architecture, Dependency Injection, Use case Driven Development, Test Driven Development, MOQ etc.

He has Bachelor of Computing with Distinction Grade from University of Western Sydney.

Comments and Discussions

 
GeneralThank you Pin
Shane Calhoun30-Jun-06 11:00
Shane Calhoun30-Jun-06 11:00 
Generalreberbe Pin
Anonymous7-Oct-05 23:31
Anonymous7-Oct-05 23:31 
GeneralRe: reberbe Pin
Rahman Mahmoodi8-Oct-05 16:37
Rahman Mahmoodi8-Oct-05 16:37 

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.