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()); } }