Collections ASP.Net

<%@ Page Language="C#" Debug="true" %>

    void Page_Load()
    {
        if(Page.IsPostBack)
        {
            string [,] strClient = new string[4,3]; // 4 people, 3 attributes each
        
            strClient[0,0] = "First Name 1";
            strClient[0,1] = "Last Name 1";
            strClient[0,2] = "111-111-1111";
            strClient[1,0] = "First Name 2";
            strClient[1,1] = "Last Name 2";
            strClient[1,2] = "222-222-2222";
            strClient[2,0] = "First Name 3";
            strClient[2,1] = "Last Name 3";
            strClient[2,2] = "333-333-3333";
            strClient[3,0] = "First Name 4";
            strClient[3,1] = "Last Name 4";
            strClient[3,2] = "444-444-4444";
        
            int intIDnumber = Convert.ToInt32(txtID.Text);
        
            lblNameFirst.Text = strClient[intIDnumber,0];
            lblNameLast.Text = strClient[intIDnumber,1];
            lblTel.Text = strClient[intIDnumber,2];
        
        }
    
    }



    Array Multidimensional Example


    
        Enter a client number (from 0 to 3)