How would you pass the model from an (GetDate) action to another (ProcessP) action via RedirectAction method?
Here\'s the source code:
[HttpPost]
pub
If you need to pass data from one action to another one option is to utilize TempData. For example within GetDate you could add data to the session as follows:
TempData["Key"] = YourData
And then perform the redirect. Within ProcessP you can access the data utilizing the key you previously used:
var whatever = TempData["Key"];
For a decent read, I would recommend reading through this thread: ASP.NET MVC - TempData - Good or bad practice