Asp Control ASP.Net

<%@ Page Language="vb" %>


   Input Control Example
   
      Sub Page_Load()
         SingleText.Text = "Hello ASP.NET"
         PasswordText.Attributes("Value") = "New Password"
         MultiText.Text = "Multiline TextBox can hold many lines of text"
      End Sub
   


   

Input Control Example


   
      
         
            
               Single Line TextBox:
            
            
                                 text="Single Line TextBox" 
                  runat="server" />
            
         
         
            
               Password TextBox:
            
            
                                 text="Password" 
                  textmode="Password" 
                  runat="server" />
            
         
         
            
               Multiline TextBox:
            
            
                                 text="Multiline TextBox" 
                  textmode="Multiline" 
                  runat="server" />