Exemplo n.º 1
0
 protected void BTN_AgregarEps_Click(object sender, EventArgs e)
 {
     try
     {
         String eps  = TB_AgregarEps.Text.Trim();
         LEps   lEps = new LEps();
         lEps.agregarEps(TB_AgregarEps.Text.Trim(), Session.SessionID);
         TB_AgregarEps.Text = "";
         GV_Eps.DataBind();
         LB_MensajeEps.Text = "Agrego correctamente!";
     }
     catch (Exception ex)
     {
         LB_MensajeEps.Text = "Esta vacio!";
     }
     T_Eps.Enabled = true;
 }