ASP Net Controls ASP.Net Tutorial

<%@ Page Language="VB" %>

    Protected Sub Button1_Click(ByVal sender As Object, _
       ByVal e As System.EventArgs)
        ListBox1.Items.Add(TextBox1.Text.ToString())
    End Sub
    Protected Sub Button2_Click(ByVal sender As Object, _
       ByVal e As System.EventArgs)
        Label1.Text = "You selected from the ListBox:
"
        For Each li As ListItem In ListBox1.Items
            If li.Selected = True Then
                label1.Text += li.Text & "
"
            End If
        Next
    End Sub



    Using the ListBox


    
    

        
                 OnClick="Button1_Click" />
        
    
        
           Hematite
           Halite
           Limonite
           Magnetite
        
        
                 OnClick="Button2_Click" />