Exemplo n.º 1
0
 protected void lnkbtnSeleccion_Command(object sender, CommandEventArgs e)
 {
     try
     {
         var val = System.Convert.ToInt32(e.CommandArgument.ToString());
         cursoLogic.Eliminar(new Curso()
         {
             Id = val
         });
         Ira(Properties.Pages.Default.Cursos, itemPasantias.Id);
     }
     catch (Exception ex)
     {
         ManejarError(ex);
     }
 }