Asp Control ASP.Net

<%@ Page Language="vb" %>


   Selection Control Example
   
      Sub Page_Load()
         MyCheckBox1.Checked = True
         MyRadioButton1.Checked = False
         MyListBox.SelectionMode = ListSelectionMode.Multiple
         MyDropDownList.SelectedIndex = 1
         MyCheckBoxList.RepeatDirection = RepeatDirection.Horizontal
         MyRadioButtonList.RepeatLayout = RepeatLayout.Table
      End Sub
   


   

Selection Control Example


   
      
         
            
               CheckBox Control:
            
            
                                 text="Vanilla" runat="server" />
                                 text="Chocolate" runat="server" />
            
         
         
            
               RadioButton Control:
            
            
                                 checked=True text="Yes" runat="Server"/>
                                 text="No" runat="Server"/>
            
         
         
            
               ListBox Control:
            
            
               
                  Vanilla
                  Chocolate
                  Strawberry
               
            
         
         
            
               DropDownList Control:
            
            
               
                  Single
                  Multiline
                  Password
               
            
         
         
            
               CheckBoxList Control:
            
            
                                 repeatdirection="vertical" runat="server">
                  
                  
                  
               
            
         
         
            
               RadioButtonList Control: