コード例 #1
0
        public ActionResult Edit(ccevento ccevento)
        {
            try
            {
                db.Entry(ccevento).State = EntityState.Modified;
                db.SaveChanges();

                return RedirectToAction("Index");
            }
            catch
            {
                return View(ccevento);
            }
        }
コード例 #2
0
        public ActionResult Create(ccevento ccevento)
        {
            try
            {
                db.ccevento.Add(ccevento);
                db.SaveChanges();

                return RedirectToAction("Index");
            }
            catch
            {
                return View(ccevento);
            }
        }