Users Pricing

forum

Home Forums ASP.NET MVC HttpPost posting null model – MindStick

ASP.NET MVC HttpPost posting null model

Anonymous User 3418 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.


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md