forum

Home / DeveloperSection / Forums / ASP.NET MVC HttpPost posting null model

ASP.NET MVC HttpPost posting null model

Anonymous User 2972 30-Nov-2014

Form posts from webpage MakeBooking to FinalBooking to ascertain certain information such as number of guests, so the FinalBooking page can give you enough textboxes to input guest information for all guests required.

 

When in debug mode, both models in MakeBooking post are populated. After post, in FinalBooking, model is null. 

    [HttpPost]
    public ActionResult MakeBooking(BookingModel model)
    {
        return RedirectToAction("FinalBooking", "Booking", new { model = model });
    }
 
    public ActionResult FinalBooking(BookingModel model)
    {
        return View(model);
    }

Any info would be appreciated.


Updated on 01-Dec-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By