Ejemplo n.º 1
0
 public ActionResult Create(FormCollection collection)
 {
     try
     {
         // TODO: Add insert logic here
         UpdateUtils.InsertMeetingLib(collection);
         return(RedirectToAction("Index"));
     }
     catch (Exception e)
     {
         Console.WriteLine("{0} Exception caught.", e);
         return(View());
     }
 }