How to RedirectToAction in ASP.NET MVC without losing request data - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T18:03:11Zhttp://stackoverflow.com/feeds/question/1936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data14How to RedirectToAction in ASP.NET MVC without losing request dataGraphain2008-08-05T05:33:41Z2009-05-18T01:55:03Z
<p>Using ASP.NET MVC there are situations (such as form submission) that may require a RedirectToAction. </p>
<p>One such situation is when you encounter validation errors after a form submission and need to redirect back to the form, but would like the URL to reflect the URL of the form, not the action page it submits to.</p>
<p>As I require the form to contain the originally POSTed data, for user convenience, as well as validation purposes, how can I pass the data through the RedirectToAction()? If I use the viewData parameter, my POST parameters will be changed to GET parameters.</p>
http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/1940#194016Answer by Graphain for How to RedirectToAction in ASP.NET MVC without losing request dataGraphain2008-08-05T05:43:27Z2008-08-05T10:04:52Z<p>The solution is to use the TempData property to store the desired Request components.</p>
<p>For instance:</p>
<pre><code>public ActionResult Send()<br>{<br> TempData["form"] = Request.Form;<br> return this.RedirectToAction(a => a.Form());<br>}<br></code></pre>
<p>Then in your "Form" action you can go:</p>
<pre><code>public ActionResult Form()<br>{<br> /* Declare viewData etc. */<br><br> if (TempData["form"] != null)<br> {<br> /* Cast TempData["form"] to <br> System.Collections.Specialized.NameValueCollection <br> and use it */<br> }<br> return View("Form", viewData);<br> }<br></code></pre>http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/4415#441510Answer by Haacked for How to RedirectToAction in ASP.NET MVC without losing request dataHaacked2008-08-07T05:12:32Z2008-08-07T05:12:32Z<P>Keep in mind that TempData stores the form collection in session. If you don't like that behavior, you can implement the new ITempDataProvider interface and use some other mechanism for storing temp data. I wouldn't do that unless you know for a fact (via measurement and profiling) that the use of Session state is hurting you.</P>http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/27013#270134Answer by TheDeeno for How to RedirectToAction in ASP.NET MVC without losing request dataTheDeeno2008-08-25T22:06:36Z2008-08-26T19:27:04Z<p>There is another way which avoids tempdata. The pattern I like involves creating 1 action for both the original render and re-render of the invalid form. It goes something like this:</p>
<pre><code>var form = new FooForm();
if (request.UrlReferrer == request.Url)
{
// Fill form with previous request's data
}
if (Request.IsPost())
{
if (!form.IsValid)
{
ViewData["ValidationErrors"] = ...
} else {
// update model
model.something = foo.something;
// handoff to post update action
return RedirectToAction("ModelUpdated", ... etc);
}
}
// By default render 1 view until form is a valid post
ViewData["Form"] = form;
return View();
</code></pre>
<p>That's the pattern more or less. A little pseudoy. With this you can create 1 view to handle rendering the form, re-displaying the values (since the form will be filled with previous values), and showing error messages.</p>
<p>When the posting to this action, if its valid it transfers control over to another action.</p>
<p>I'm trying to make this pattern easy in the <a href="http://www.codeplex.com/ValidationFramework/" rel="nofollow">.net validation framework</a> as we build out support for MVC.</p>
http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/68051#680511Answer by davidinbcn for How to RedirectToAction in ASP.NET MVC without losing request datadavidinbcn2008-09-15T23:53:18Z2008-09-15T23:53:18Z<p>I use TempData as well, the problem as I understand it, with your solution Deeno is that if the user was to refresh the page after posting invalid data they would receive a "Would you like to resubmit the form data" confirmation. Using the TempData solution as Graphain says eliminates this problem.</p>
http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/129379#1293791Answer by Chris Pietschmann for How to RedirectToAction in ASP.NET MVC without losing request dataChris Pietschmann2008-09-24T19:37:10Z2008-09-24T19:37:10Z<p>Here's a question that is similar (on the same topic), but different than this one. Anyway, it still may be of interest to those interested in this question:</p>
<p><a href="http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-intead-of-get">http://stackoverflow.com/questions/129335/how-do-you-redirecttoaction-using-post-intead-of-get</a></p>
http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/718653#7186532Answer by Dan for How to RedirectToAction in ASP.NET MVC without losing request dataDan2009-04-05T09:36:53Z2009-04-05T09:36:53Z<p>Take alook at MVCContrib, you can do this:</p>
<blockquote>
<pre><code> using MvcContrib.Filters;
[ModelStateToTempData]
public class MyController : Controller {
//
...
}
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/875967#8759671Answer by Jon Kruger for How to RedirectToAction in ASP.NET MVC without losing request dataJon Kruger2009-05-18T01:55:03Z2009-05-18T01:55:03Z<p>See here on how you can do this with MVCContrib...</p>
<p><a href="http://jonkruger.com/blog/2009/04/06/aspnet-mvc-pass-parameters-when-redirecting-from-one-action-to-another/" rel="nofollow">http://jonkruger.com/blog/2009/04/06/aspnet-mvc-pass-parameters-when-redirecting-from-one-action-to-another/</a></p>