void BtnBuscar_ServerClick(object sender, EventArgs e)
 {
     BtnErrorDpi.Visible = false;
     if (TxtDpi.Text.Replace("-", "") == "")
     {
         BtnErrorDpi.Visible     = true;
         LblMensajeErrorDpi.Text = "ingrese el número de DPI";
     }
     else
     {
         DataSet ds = ClUsuario.Get_NombrePersona(Convert.ToInt64(TxtDpi.Text.Replace("-", "")));
         if (ds.Tables["Datos"].Rows.Count > 0)
         {
             CboPersona.SelectedValue = ds.Tables["Datos"].Rows[0]["PersonaId"].ToString();
             CboPersona.Text          = ds.Tables["Datos"].Rows[0]["Nombre"].ToString();
         }
         else
         {
             BtnErrorDpi.Visible     = true;
             LblMensajeErrorDpi.Text = "El Dpi no existe";
             CboPersona.Text         = "";
             TxtDpi.Text             = "";
             CboPersona.ClearSelection();
         }
         ds.Tables.Clear();
     }
 }