Asp Control ASP.Net


  void Page_Load()
  {
    Message1.Text = "";
    Message2.Text = "";
    Message3.Text = "";
    if (text1.Text != "") {  
      Message1.Text = "You have entered the following name: " +  text1.Text;
    }
    if (text2.Text != "") {
      Message2.Text = "You have entered the following address: " + text2.Text;
    }
    if (text3.Text != "") { 
      Message3.Text = "You have entered the following password: " + text3.Text;
    }
   }


  
    Text Box Example
  
  
    
     
     
    
    
    
    
      Please enter your name:
      
      
      Please enter your address:
      
      
      Please enter your chosen password: