show/hide this revision's text 2 added 1 characters in body

I've tried returning the formCollection to the view (I've made the important line bold):

   [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);**
    }

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:

<%=Html.TextBox("StartDate.Hour", null, new { @class = "text" })%>)%>

Any thoughts?

I'm tearing my hair our!!!

How should this be done!?!?!?!

show/hide this revision's text 1

I've tried returning the formCollection to the view (I've made the important line bold):

   [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);**
    }

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:

<%=Html.TextBox("StartDate.Hour", null, new { @class = "text" })%>

Any thoughts?

I'm tearing my hair our!!!

How should this be done!?!?!?!