Collections ASP.Net Tutorial

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"  Inherits="UsingArrayList" %>



   Using an ArrayList


   
      
         

Using an ArrayList


         
         In this example, the drop-down list is 
         data bound to an ArrayList.
         
         
         

Select customer from list:


         
                     DataTextField="Name"
           DataValueField="Id"  
           OnSelectedIndexChanged="SelectCustomer" />
        
         
         
                
        

Customer Information


         Id:
        
         First Name:
        
         Last Name:
        
         Phone Number:
        
      
      

   


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public abstract class AbstractEntity
{
   private string _id;
  public AbstractEntity(string id)
  {
      _id = id;
  }
   public string Id
   {
      get { return _id; }
      set { _id = value; }
   }
   public abstract bool IsValid
   {
      get;
   }
}
public class Customer: AbstractEntity 
{
   // data members
   private string _firstName;
   private string _lastName;
   private string _phone;
   public Customer(string id, string firstName, string lastName, string phone): base(id)
   {
      _firstName = firstName;
      _lastName = lastName;
      _phone = phone;
   }
   public string FirstName
   {
      get { return _firstName; }
      set { _firstName = value; }
   }
   public string LastName
   {
      get { return _lastName; }
      set { _lastName = value; }
   }
   public string Phone
   {
      get { return _phone; }
      set { _phone = value; }
   }
   public string Name
   {
      get { return LastName + ", " + FirstName; }
   }
   public override bool IsValid
   {
      get
      {
         if (Id.Length > 0 && LastName.Length > 0)
            return true;
         else
            return false;
      }
   }
   public override string ToString()
   {
      return Id + "," + Name + "," + Phone; 
   }
}
public partial class UsingArrayList : System.Web.UI.Page
{
   private ArrayList _customers;
   private void Page_Load(object sender, System.EventArgs e)
   {
      _customers = new ArrayList();
      FillCustomers();
      if (!IsPostBack)
      {
         lboxCustomers.DataSource = _customers;
         lboxCustomers.DataBind();
         panCustomer.Visible = false;
      }
   }
   private void FillCustomers()
   {
      Customer c1 = new Customer("1", "A", "AA", "123-4567");
      Customer c2 = new Customer("2", "B", "BB", "456-1267");
      Customer c3 = new Customer("3", "C", "CC", "564-7823");
      Customer c4 = new Customer("4", "D", "DD", "253-6383");
      _customers.Add(c1);
      _customers.Add(c2);
      _customers.Add(c3);
      _customers.Add(c4);
   }
    protected void SelectCustomer(object sender, System.EventArgs e)
    {
       int index = lboxCustomers.SelectedIndex;
    
       if (index >= 0 && index <= _customers.Count)
       {
          Customer c = (Customer)_customers[index];
    
          txtId.Text = c.Id;
          txtFirst.Text = c.FirstName;
          txtLast.Text = c.LastName;
          txtPhone.Text = c.Phone;
    
          panCustomer.Visible = true;
       }
    }
}