Collections ASP.Net

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

       void Page_Load()
       {
            SortedList stlShippers = new SortedList();
        
            stlShippers["cp"]="CP";
            stlShippers["fe"]="FE";
            stlShippers["us"]="US";
        
            lblOut.Text = "Your selection = " + stlShippers[txtCodeIn.Text];
       }


    
    
    
        
        Please enter a shipper code ("cp" "fe" "us"): 
        

        

        Label