Language Basics ASP.Net Tutorial

    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

  
    ASP.NET Functions
    
      string getName() 
      {
        return "Abc";
      }
      void Page_Load() 
      {
        messageLabel.Text = getName();
      }