protected void grResultado_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            if (e.CommandName == "SELECT")
            {
                indice             = Convert.ToInt32(e.CommandArgument);
                Session["Id"]      = Convert.ToInt32(GrTipo.Rows[indice].Cells[0].Text);
                txtNombre.Text     = GrTipo.Rows[indice].Cells[1].Text;
                txtApepat.Text     = GrTipo.Rows[indice].Cells[2].Text;
                txtApeMat.Text     = GrTipo.Rows[indice].Cells[3].Text;
                txtUsuario.Text    = GrTipo.Rows[indice].Cells[4].Text;
                txtContrasena.Text = GrTipo.Rows[indice].Cells[5].Text;
            }
            if (e.CommandName == "BORRARR")
            {
                indice            = Convert.ToInt32(e.CommandArgument);
                Session["Id"]     = Convert.ToInt32(GrTipo.Rows[indice].Cells[0].Text);
                Usuario.IdUsuario = Convert.ToInt32(GrTipo.Rows[indice].Cells[0].Text);

                servicio.EliminarUsuarioDAO(Usuario);

                //indice = 0;
                Usuario = new localhost.UsuarioBO();
                llenarGridUsuario(Usuario);
            }
        }
        public void limpiar()
        {
            Usuario            = new localhost.UsuarioBO();
            txtNombre.Text     = "";
            txtApeMat.Text     = "";
            txtApepat.Text     = "";
            txtUsuario.Text    = "";
            txtContrasena.Text = "";

            llenarGridUsuario(Usuario);
        }