コード例 #1
0
ファイル: AlertsController.cs プロジェクト: llenroc/SwiftKare
 public ActionResult Delete(int id)
 {
     if (Session["LogedUserID"] != null)
     {
         try
         {
             db.sp_DeleteAlerts(id, Session["LogedUserID"].ToString(), System.DateTime.Now);
             db.SaveChanges();
             return(RedirectToAction("Index"));
         }
         catch (Exception ex)
         {
             return(RedirectToAction("Index"));
         }
     }
     else
     {
         return(RedirectToAction("../Login/Index"));
     }
 }