---
title: "ASP.NET MVC HttpPost posting null model"  
description: "ASP.NET MVC HttpPost posting null model"  
author: "Anonymous User"  
published: 2014-11-30  
updated: 2014-12-01  
canonical: https://www.mindstick.com/forum/12722/asp-dot-net-mvc-httppost-posting-null-model  
category: "asp.net"  
tags: ["asp.net mvc", "mvc", "http post"]  
reading_time: 1 minute  

---

# ASP.NET MVC HttpPost posting null model

[Form](https://www.mindstick.com/forum/6/multi-form-mfc-application) [posts](https://www.mindstick.com/news/1939/as-market-for-digital-collectibles-tanks-meta-linked-instagram-s-nft-posts-to-facebook) from webpage MakeBooking to FinalBooking to ascertain certain information such as number of guests, so the FinalBooking [page](https://www.mindstick.com/articles/13031/why-to-make-a-wikipedia-page) can give you [enough](https://answers.mindstick.com/qa/48601/who-is-the-writer-of-the-one-life-is-not-enough) textboxes to [input](https://www.mindstick.com/forum/159209/how-can-i-read-convert-an-input-stream-into-a-string-in-java) [guest](https://www.mindstick.com/blog/11817/how-to-get-backlinks-from-online-guest-blogs) information for all guests required.

When in [debug mode](https://www.mindstick.com/interview/23356/how-can-you-test-bundling-in-debug-mode), both models in MakeBooking [post](https://www.mindstick.com/articles/12829/aspects-that-make-australia-post-shipping-extension-a-useful-tool) are populated. After post, in FinalBooking, [model](https://yourviews.mindstick.com/view/81334/america-is-reopening-after-corona-lockdown-but-on-swedish-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.

## Replies

### Reply by Anonymous User

It should work

return RedirectToAction("FinalBooking", "Booking", model);


---

Original Source: https://www.mindstick.com/forum/12722/asp-dot-net-mvc-httppost-posting-null-model

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
