public ActionResult Index() { using (var context = new SiteContainer()) { MapContent content = context.MapContent.First(); return View(content); } }
public ActionResult Edit(FormCollection form) { using (var context = new SiteContainer()) { MapContent content = context.MapContent.First(); content.Text = HttpUtility.HtmlDecode(form["Text"]); context.SaveChanges(); } return RedirectToAction("Index"); }