void ReleaseDesignerOutlets()
        {
            if (Back != null)
            {
                Back.Dispose();
                Back = null;
            }

            if (Button_Continue != null)
            {
                Button_Continue.Dispose();
                Button_Continue = null;
            }

            if (TextInput != null)
            {
                TextInput.Dispose();
                TextInput = null;
            }
        }
        protected void Button_Next_Click(object sender, EventArgs e)
        {
            //El indice se borra cada que ingresa un pasajero, por lo que tuve que guardarlo en una cookie y la leo cada que ingresa otro
            iIndice = int.Parse(Request.Cookies["Indice"]["Indice"]);

            //Verifico que este registrando adultos, si es asi, verifico que capture todo y lo guardo en cookie
            if (Label11.Visible == true)
            {
                if (string.IsNullOrEmpty(TextBox_AdultFname.Text) || string.IsNullOrEmpty(TextBox_AdultLname.Text))
                {
                    Response.Write("<script LANGUAGE='JavaScript' >alert('You must capture the adult name and adult last name before continue!')</script>");
                    return;
                }
                else
                {
                    string passenger = DropDownList_AdultTitle.Text + "*" + TextBox_AdultFname.Text + "*" + TextBox_AdultLname.Text;
                    Response.Cookies["PassengerAdults"][iIndice.ToString()] = passenger;
                    Session[iIndice.ToString()]  = passenger;
                    TextBox_AdultFname.Text      = string.Empty;
                    TextBox_AdultLname.Text      = string.Empty;
                    DropDownList_AdultTitle.Text = string.Empty;
                    DropDownList_AdultTitle.Focus();
                }
            }

            //Valido que halla capturado todos los datos en niños
            if (Label14.Visible == true)
            {
                if (string.IsNullOrEmpty(TextBox_ChildrenFname.Text) || string.IsNullOrEmpty(TextBox_ChildrenLname.Text))
                {
                    Response.Write("<script LANGUAGE='JavaScript' >alert('You must capture the children name and children last name before continue!')</script>");
                    return;
                }
                else
                {
                    string child = TextBox_ChildrenFname.Text + "*" + TextBox_ChildrenLname.Text;
                    Response.Cookies["PassengerChildren"][iIndice.ToString()] = child;
                    Session[iIndice.ToString()] = child;
                    TextBox_ChildrenFname.Text  = string.Empty;
                    TextBox_ChildrenLname.Text  = string.Empty;
                    TextBox_ChildrenLname.Focus();
                }
            }

            //Aumento el total de travelers capturados
            iIndice++;
            Response.Cookies["Indice"]["Indice"] = iIndice.ToString();
            Label_Indice.Text = iIndice.ToString();

            //Verifico si hay mas travelers por capturar
            if (iIndice >= iTotalAdultos + iTotalNinos)
            {
                Button_Next.Enabled     = false;
                Button_Continue.Enabled = true;
                Button_Continue.Focus();
                Label13.Visible = false;
                Label14.Visible = false;
                Label15.Visible = false;
                TextBox_ChildrenFname.Visible   = false;
                TextBox_ChildrenLname.Visible   = false;
                TextBox_AdultFname.Visible      = false;
                TextBox_AdultLname.Visible      = false;
                DropDownList_AdultTitle.Visible = false;
                Label11.Visible         = false;
                Label9.Visible          = false;
                Label10.Visible         = false;
                Label12.Visible         = false;
                Button_Continue.Visible = true;
                Button_Next.Visible     = false;
                return;
            }

            //Si el usuario acabo de captutrar adultos muestro tab de niños
            if (iIndice == iTotalAdultos)
            {
                TextBox_AdultFname.Visible      = false;
                TextBox_AdultLname.Visible      = false;
                DropDownList_AdultTitle.Visible = false;
                Label11.Visible = false;
                Label9.Visible  = false;
                Label10.Visible = false;
                Label12.Visible = false;
                Label13.Visible = true;
                Label14.Visible = true;
                Label15.Visible = true;
                TextBox_ChildrenFname.Visible = true;
                TextBox_ChildrenLname.Visible = true;
            }
        }