ASP.NET MVC Form repopulation - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T00:00:39Zhttp://stackoverflow.com/feeds/question/411476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/411476/asp-net-mvc-form-repopulation3ASP.NET MVC Form repopulationListenToRick2009-01-04T18:52:12Z2009-05-29T14:45:16Z
<p>I have a controller with two actions:</p>
<pre><code>[AcceptVerbs("GET")]
public ActionResult Add()
{
PrepareViewDataForAddAction();
return View();
}
[AcceptVerbs("POST")]
public ActionResult Add([GigBinderAttribute]Gig gig, FormCollection formCollection)
{
if (ViewData.ModelState.IsValid)
{
GigManager.Save(gig);
return RedirectToAction("Index", gig.ID);
}
PrepareViewDataForAddAction();
return View(gig);
}
</code></pre>
<p>As you can see, when the form posts its data, the Add action uses a GigBinder (An implemenation of IModelBinder)</p>
<p>In this binder I have:</p>
<pre><code> if (int.TryParse(bindingContext.HttpContext.Request.Form["StartDate.Hour"], out hour))
{
gig.StartDate.Hour = hour;
}
else
{
bindingContext.ModelState.AddModelError("Doors", "You need to tell us when the doors open");
}
</code></pre>
<p>The form contains a text box with id "StartDate.Hour".</p>
<p>As you can see above, the GigBinder tests to see that the user has typed in an integer into the textbox with id "StartDate.Hour". If not, a model error is added to the modelstate using AddModelError. </p>
<p>Since the gigs property gigs.StartDate.Hour is strongly typed, I cannot set its value to, for example, "TEST" if the user has typed this into the forms textbox. </p>
<p>Hence, I cant set the value of gigs.StartDate.Hour since the user has entered a string rather than an integer.</p>
<p>Since the Add Action returns the view and passes the model (return View(gig);) if the modelstate is invalid, when the form is re-displayed with validation mssages, the value "TEST" is not displayed in the textbox. Instead, it will be the default value of gig.StartDate.Hour.</p>
<p>How do I get round this problem? I really stuck!</p>
http://stackoverflow.com/questions/411476/asp-net-mvc-form-repopulation/411503#4115031Answer by ListenToRick for ASP.NET MVC Form repopulationListenToRick2009-01-04T19:08:40Z2009-05-29T14:45:16Z<p>I've tried returning the formCollection to the view (I've made the important line bold):</p>
<pre><code> [AcceptVerbs("POST")]
public ActionResult Add([GigBinderAttribute]Gig gig, FormCollection formCollection)
{
if (ViewData.ModelState.IsValid)
{
GigManager.Save(gig);
return RedirectToAction("Index", gig.ID);
}
PrepareViewDataForAddAction();
**return View(formCollection);**
}
</code></pre>
<p>Even though the formCollection contains a key "StartDate.Hour" with a value, the associated textbox in the view (see below) doesnt re-populate the value:</p>
<pre><code><%=Html.TextBox("StartDate.Hour", null, new { @class = "text" })%>
</code></pre>
<p>Any thoughts?</p>
<p>I'm tearing my hair our!!!</p>
<p>How should this be done!?!?!?!</p>
http://stackoverflow.com/questions/411476/asp-net-mvc-form-repopulation/416654#4166540Answer by Dominic Betts for ASP.NET MVC Form repopulationDominic Betts2009-01-06T14:05:52Z2009-01-06T14:05:52Z<p>Could you do this in your PrepareViewDataForAddAction method?..</p>
<pre><code>if (!ViewData.ModelState.IsValid)
{
ViewData["StartDate.Hour"] = "Error";
}
</code></pre>
<p>The other fields on the form will still populate based on the properties of the Gig object.</p>