public ActionResult Index(DemoElement element)
 {
     return View(element);
 }
 public ActionResult Index()
 {
     DemoElement element = new DemoElement() { Prop4 = DateTime.Now.ToShortDateString() };
     return View(element);
 }