Bind arraylist elements to asp dropdown and get selected one (VB.net) : DropDownList « Data Binding « ASP.Net






Bind arraylist elements to asp dropdown and get selected one (VB.net)

<%@ Page Language="VB" %>
<script runat="server">
    Sub Page_Load()
        if Not Page.IsPostBack Then
            Dim items As New ArrayList()
            items.Add("Apples")
            items.Add("Oranges")

            DropDownList1.DataSource = items
            DropDownList1.DataBind()
        End If
    End Sub

    Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)
        Label1.Text = DropDownList1.SelectedItem.Text
    End Sub
</script>
<html>
<head id="Head1" runat="server">
    <title>Show IsPostBack</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    <asp:DropDownList
        id="DropDownList1"
        Runat="server" />
    
    <asp:Button
        id="Button1"
        Text="Select"
        OnClick="Button1_Click" 
        Runat="server" />
    
    You selected:
    <asp:Label  
        id="Label1"
        Runat="server" />
    
    </div>
    </form>
</body>
</html>

           
       








Related examples in the same category

1.Bind Color name to asp:dropdownlist (VB.net)
2.Bind DataTable to asp:DropDownList (VB.net)
3.Bind ArrayList to asp:dropdownlist (VB.net)
4.Bind Hashtable to DropDownList (VB.net)
5.ArrayList Data binding for asp:DropDownList (VB.net)
6.Use ArrayList to fill dropdown value (C#)