Пример #1
0
        public virtual ActionResult Error500(ApplicationErrorForm form)
        {
            var logEvent = Repository.Event.Get(form.EventId);
            var newEvent = new UserFailureEvent();

            if (logEvent != null)
            {
                newEvent.Data = string.Format(Resources.Global.ErrorFormMessageTemplate, form.Description, form.Email) + logEvent.Data;
                Repository.Event.Add(newEvent);
                Repository.Event.Delete(logEvent);
            }

            Flash.Info(Resources.Global.ErrorFormConfirmation);
            return RedirectToAction(MVC.StaticPages.Home());
        }
Пример #2
0
 public virtual ActionResult Error500(int eventId = 0)
 {
     var model = new ApplicationErrorForm {EventId = eventId};
     return View(model);
 }