Collections ASP.Net

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

void Page_Load(){
   if (Page.IsPostBack){
       string[] choice = new string[3];
       choice[0] = "1";
       choice[1] = "2";
       choice[2] = "3";
       lblShipper.Text = "Shipper ID for " + txtShipNum.Text + " is " + Array.IndexOf(choice, txtShipNum.Text);
       lblShipper.Visible = true;
   }
}



    Array Example


    
        Please enter your shipper name. 
        (should be "1"  or  "2"  or  "3") 
        

        
        Press button to find the Shipper ID number