ASP Net Controls ASP.Net Tutorial


   sub Page_Load(Sender as Object, e as EventArgs)
      if not Page.IsPostBack then
         dim arrColors() as string = {"red", "orange", "yellow", "green", "blue", "indigo", "violet"}
         lbColors.SelectedIndex = 0
         lbColors.DataSource = arrColors
      end if
      DataBind()
   end sub


   
               width="150"
         AutoPostBack="true"
         SelectionMode="Single" >
      
   
               Text='<%# lbColors.SelectedItem.Text %>' />