public ActionResult tellmore() { TellMore f = new TellMore(); f.Get(); return(View("tellmore", f)); }
public ActionResult tellmore(TellMore f) { try { f.Set(); } catch (RuleException e) { f.Errors.CopyToModelState(ModelState); } return(View("tellmore", f)); }