Development ASP.Net

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>



    Untitled Page


    
    

        
                    Text="Show App Variables" />
        
        
        
        
        
        
    
    

    


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page 
{
    protected void btnShowAppVariables_Click(object sender, EventArgs e)
    {
        Car appVars = ((Car)Application["CarSiteInfo"]);
        string appState = string.Format("
  • Car on sale: {0}
  • ",appVars.currentName);
            appState += string.Format("
  • Popular color: {0}
  • ",appVars.popularName);
            appState += string.Format("
  • SalesPerson: {0}
  • ",appVars.firstName);
            lblAppVariables.Text = appState;
        }
        protected void btnSetNewSP_Click(object sender, EventArgs e)
        {
            ((Car)Application["CarSiteInfo"]).firstName = txtNewSP.Text;
        }
    }
    File: Global.asax
    <%@ Application Language="C#" %>

        void Application_Start(Object sender, EventArgs e) {
            Application["CarSiteInfo"] = new Car("Chucky", "Colt", "Black");
        }
        
        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) {
            // Code that runs when a session ends. 
            // Note: The Session_End event is raised only when the sessionstate mode
            // is set to InProc in the Web.config file. If session mode is set to StateServer 
            // or SQLServer, the event is not raised.
        }
           

    File: ~\App_Code\Car.cs
    using System;
    using System.Data;
    using System.Configuration;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    public class Car
    {
        public Car(string s, string c, string m)
        {
            firstName = s;
            currentName = c;
            popularName = m;
        }
        public string firstName;
        public string currentName;
        public string popularName;
    }