I\'m just trying to get back into .NET MVC with the new release and I can\'t get my head round the way may view is binding to the DataModel.
I have a model with a pr
You need to clear your model state so your code would look something like:
[HttpPost] public ActionResult Register(Registration model) { ModelState.Clear(); model.first_name = "Steve"; return View(model); }