ASP Net Instroduction ASP.Net Tutorial

<%@ Application Language="C#" %>

    public override string GetVaryByCustomString(HttpContext context, string arg)
    {
        if (arg.ToLower() == "prefs ")
        {
            HttpCookie cookie = context.Request.Cookies["Language"];
            if (cookie != null)
            {
                return cookie.Value;
            }
        }
        return base.GetVaryByCustomString(context, arg);
    }
    void Application_Start(object sender, EventArgs e) 
    {
        // Code that runs on application startup
    }
    
    void Application_End(object sender, EventArgs e) 
    {
        //  Code that runs on application shutdown
    }
        
    void Application_Error(object sender, EventArgs e) 
    { 
        // Code that runs when an unhandled error occurs
    }
    void Session_Start(object sender, EventArgs e) 
    {
        // Code that runs when a new session is started
    }
    void Session_End(object sender, EventArgs e) 
    {
    }