For Each loop through an Array (VB.net) : Array « Collections « ASP.Net






For Each loop through an Array (VB.net)

<%@Page language="vb" %>

<script runat="server" language="vb">
  Sub Page_Load()
    Dim AnimalArray(4) As String
    Dim strAnimal As String
    AnimalArray(0) = "Dog"
    AnimalArray(1) = "Cat"
    AnimalArray(2) = "Elephant"
    AnimalArray(3) = "Lion"
    AnimalArray(4) = "Cat"

    For Each strAnimal In AnimalArray
      MyDropDownList.Items.Add(strAnimal)
    Next
  End Sub
</script>

<html>
<form id="Form1" method="post" runat="server">
<asp:dropdownlist id="MyDropDownList" runat="server" />
</form>
</html>

           
       








Related examples in the same category

1.Array Reverse Demo (VB.net)
2.Array.IndexOf and Array.LastIndexOf (VB.net)
3.Get array by index (VB.net)
4.Sort an Array (VB.net)
5.For each loop: array (VB.net)
6.Change array length (VB.net)
7.Define and use array (VB.net)
8.Sort array reversely (C#)
9.Get array element by index (C#)
10.Array.IndexOf(), Array.LastIndexOf() (C#)
11.Use String Array to store Asp Label Text (C#)
12.Use Two dimensional array (C#)
13.Use array: find item index (C#)