private void Buscarbutton_Click(object sender, EventArgs e)
 {
     if (IdtextBox.Text.Trim() == "")
     {
         TipoIngresoerrorProvider.SetError(IdtextBox, "Debe especificar el ID ");
         IdtextBox.Focus();
     }
     else
     {
         TipoIngresoerrorProvider.Clear();
     }
     if (IdtextBox.TextLength > 0)
     {
         int id;
         int.TryParse(IdtextBox.Text, out id);
         tipoingreso.Buscar(id);
         DescripciontextBox.Text = tipoingreso.Descripcion;
         if (tipoingreso.EsActivo == true)
         {
             SiradioButton.Checked = true;
         }
         if (tipoingreso.EsActivo == false)
         {
             NoradioButton.Checked = true;
         }
     }
 }
        protected void BuscarButton_Click(object sender, EventArgs e)
        {
            if (ValidarIdEntero(TipoIngresoTextBox.Text) > 0)
            {
                if (TipodeIngreso.Buscar(ValidarIdEntero(TipoIngresoTextBox.Text)))
                {
                    DescripcionTextBox.Text = TipodeIngreso.Descripcion.ToString();

                    if (TipodeIngreso.EsActivo == true)
                    {
                        EstadoRadioButtonList.SelectedIndex = 1;
                    }
                    else
                    {
                        EstadoRadioButtonList.SelectedIndex = 2;
                    }

                    if (TipodeIngreso.UsuarioId == 0)
                    {
                        Utilitarios.ShowToastr(this.Page, "El Usuario no puede ser Nulo o Cero", "Error", "Error");
                    }
                    else
                    {
                        UsuarioDropDownList.SelectedValue = TipodeIngreso.UsuarioId.ToString();
                    }
                }
                else
                {
                    Utilitarios.ShowToastr(this.Page, "No hay Registro", "Error", "Error");
                    Limpiar();
                }
            }
            else
            {
                Utilitarios.ShowToastr(this.Page, "Ingrese un numero Valido", "Error", "Error");
                Limpiar();
            }
        }
Example #3
0
 public void BuscarTest()
 {
     Assert.IsTrue(TipoIngreso.Buscar(2));
 }