protected void ButtonBuscar_Click(object sender, EventArgs e)
        {
            Mensajes mensaje = new Mensajes();
            int      id      = int.Parse(TextBoxId.Text);

            try
            {
                CargarDatos(mensaje);
                if (!String.IsNullOrWhiteSpace(TextBoxId.Text))
                {
                    if (mensaje.Buscar(id))
                    {
                        DevolverDatos(mensaje);
                        TextBoxId.Focus();
                    }
                    else
                    {
                        Response.Write("<Script> alert('" + TextBoxId.Text + " No Existe!')</Script>");
                    }
                }
            }
            catch (Exception ex)
            {
                Response.Write("<Script> alert('" + ex.Message + "')</Script>");
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!this.IsPostBack)
            {
                Mensajes mensaje = new Mensajes();


                if (Request.QueryString["Id"] != null)
                {
                    string id = Request.QueryString["Id"].ToString();

                    if (mensaje.Buscar(int.Parse(id)))
                    {
                        DevolverDatos(mensaje);
                        TextBoxId.Focus();
                    }
                    else
                    {
                        Response.Write("<Script> alert('" + TextBoxId.Text + " No Existe!')</Script>");
                    }
                }


                if (Request.Cookies["mail"] == null)
                {
                    Label3.Text = "No existe la cookie Email";
                }
                else
                {
                    Label3.Text = this.Request.Cookies["mail"].Value;
                    Label1.Text = this.Session["nombre"].ToString();
                    Label2.Text = this.Session["apellido"].ToString();
                }
            }
        }