Language Basics ASP.Net

<%@ Page Language="C#" Debug="true" %>

         string strVariableGlobal = "Variable Global: Use me anyplace on the page";
    
         void Page_Load()
         {
            string strMyVariable1 = "Block Variable Used In Block";
    
            if (1==1)
            {
              string strMyVariable2 = "Block Variable Used In Block";
              string strMyVariable3 = "Block Variable Used After Block";
              lblMessageBlockInBlock.Text = strVariableGlobal;
    
            }
    
            lblMessageProcedure.Text = strVariableGlobal;
            SubProcedure2();
         }  
    
        void SubProcedure2()
        {
            lblMessageBlockOutBlock.Text = strVariableGlobal;
        }



    Variable Scope