Language Basics ASP.Net

<%@ Page Language="c#" %>

void Page_Load()
{
  if(1==1)
  {
      string strBlockLevelVariable;
      strBlockLevelVariable = "Very Short Lived!";
  
      lblMessage.Text = strBlockLevelVariable;
  }
}



Creating Variables Example