protected void btnAllOrders_Click(object sender, EventArgs e)
    {
        clsShippingCollection Shipments = new clsShippingCollection();

        Shipments.ClearFilter();
        lstShippingList.DataSource = Shipments.ShippingList;
        //set name of primary key
        lstShippingList.DataValueField = "ShippingId";
        //set name of field to display
        lstShippingList.DataTextField = "ShippingId";
        //bind data to the list
        lstShippingList.DataBind();
    }