DictionaryEntry working with an ArrayList : DictionaryEntry « Collections « ASP.Net

Home
ASP.Net
1.ADO.net Database
2.Ajax
3.Asp Control
4.Collections
5.Components
6.Data Binding
7.Development
8.File Directory
9.HTML Control
10.Language Basics
11.Login Security
12.Mobile Control
13.Network
14.Page
15.Request
16.Response
17.Server
18.Session Cookie
19.Sitemap
20.Theme Style
21.User Control and Master Page
22.Validation by Control
23.Validation by Function
24.WebPart
25.WPF
26.XML
ASP.Net » Collections » DictionaryEntry 
DictionaryEntry working with an ArrayList

<%@Page language="vb" debug="true"  %>

<script runat="server" language="vb">
  Sub Page_Load(Source As Object, E as EventArgs)
    Dim mySortedList as new SortedList
    Dim Item As DictionaryEntry
    
    mySortedList("A")="AA"
    mySortedList("B")="BB"
    mySortedList("C")="CC"
    mySortedList("D")="DD"

    If Not Page.IsPostback
      For Each Item In mySortedList
        Dim newListItem As new ListItem()
        newListItem.Text = Item.Key
        newListItem.Value = Item.Value
        myDropDownList.Items.Add(newListItem)
      Next
    End If
  End Sub

  Sub Click(Source As Object, E as EventArgs)
    myLabel.Text = myDropDownList.SelectedItem.Value
  End Sub
</script>

<html>
  <form runat="server">
    Pick a word from the list:
    <asp:dropdownlist id="myDropDownList" runat="server" />
    <asp:button id="myButton" runat="server" text="OK" Onclick="Click" />
    <br /><br />
    <b>Definition: </b> 
    <asp:Label id="myLabel" runat="server" text="" />
  </form>
</html>

           
       
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.