private void BtnGrabar_Click(object sender, EventArgs e)
        {
            int     UsuarioId = Convert.ToInt32(ClUtilitarios.Decrypt(HttpUtility.UrlDecode(Request.QueryString["Benutzer"].ToString()), true));
            DataSet ds        = ClUsuario.GetDatosUsuarioId(UsuarioId, Session["Idioma"].ToString());
            int     PersonaId = Convert.ToInt32(ds.Tables["Datos"].Rows[0]["PersonaId"]);

            ClPersona.Insert_Especialidad(PersonaId, Convert.ToInt32(CboEspecialidad.SelectedValue));
            ds.Clear();
            GrdDetalle.Rebind();
            Traduce();
        }