ASP Net Instroduction ASP.Net Tutorial

Use  this file to define global variables.
React to global events (such as when a web application first starts).
<%@ Application Language="C#" %>

    protected void Application_OnEndRequest()
    {
        Response.Write("
This page was served at " + 
         DateTime.Now.ToString());
    }