public ActionResult ModifPagePublique(string nomPage) { if (nomPage != null) { nomPage = nomPage.ToLower(); GetContenu_Result contentResult = db.GetContenu(nomPage.ToLower()).FirstOrDefault(); if (contentResult != null) { PublicContentModel model = new PublicContentModel(); model.nomPage = contentResult.PAGE; model.titre = contentResult.TITRE; model.titreTrad = contentResult.TITRE_TRAD; model.contenu = Message.BrToNewline(contentResult.CONTENU); model.contenuTrad = Message.BrToNewline(contentResult.CONTENU_TRAD); model.fileName = contentResult.URLIMAGE; return(View(model)); } } return(RedirectToAction("Index")); }
public ActionResult NousJoindre() { GetContenu_Result contentResult = db.GetContenu("Contact").FirstOrDefault(); return(View(contentResult)); }
public ActionResult APropos() { GetContenu_Result contentResult = db.GetContenu("About").FirstOrDefault(); return(View(contentResult)); }
public ActionResult Home() { GetContenu_Result contentResult = db.GetContenu("Accueil").FirstOrDefault(); return(View("Index", contentResult)); }