How do I handle page flow in MVC (particularly asp.net) - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T13:52:01Zhttp://stackoverflow.com/feeds/question/16330http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net2How do I handle page flow in MVC (particularly asp.net)TheDeeno2008-08-19T14:53:06Z2009-09-22T20:07:42Z
<p>If you had to provide a wizard like form entry experience in mvc how would you abstract the page flow?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net/16337#163370Answer by Nick Berardi for How do I handle page flow in MVC (particularly asp.net)Nick Berardi2008-08-19T14:54:53Z2008-08-19T14:54:53Z<p>There are a couple ways, create an action for each step of the wizard process, or create a parameter that is passed in to the action method. Like <em>step</em> that will allow you to know what the state of the wizard is in.</p>
http://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net/33604#336045Answer by Matt Hinze for How do I handle page flow in MVC (particularly asp.net)Matt Hinze2008-08-28T23:07:28Z2008-08-28T23:07:28Z<p>Investigate the post-redirect-get pattern.</p>
<p><a href="http://weblogs.asp.net/mhawley/archive/tags/MVC/default.aspx" rel="nofollow">http://weblogs.asp.net/mhawley/archive/tags/MVC/default.aspx</a><br />
<a href="http://devlicio.us/blogs/tim_barcz/archive/2008/08/22/prg-pattern-in-the-asp-net-mvc-framework.aspx" rel="nofollow">http://devlicio.us/blogs/tim_barcz/archive/2008/08/22/prg-pattern-in-the-asp-net-mvc-framework.aspx</a></p>
<p>Use that along with a robust domain model (for tracking steps or form completion state or whatever you call it) and you're golden.</p>
http://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net/41878#418780Answer by Ben Scheirman for How do I handle page flow in MVC (particularly asp.net)Ben Scheirman2008-09-03T15:05:34Z2008-09-03T15:05:34Z<pre><code>public class CreateAccountWizardController : Controller
{
public ActionRresult Step1()
{
}
public ActionResult Step2()
{
}
}
</code></pre>
http://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net/257555#2575550Answer by CodeClimber for How do I handle page flow in MVC (particularly asp.net)CodeClimber2008-11-02T23:13:44Z2008-11-02T23:13:44Z<p>In order to keep the steps you could implement a page flow action filters, which provide an experience like this one:</p>
<pre><code>[RequiredStep(FlowStart = true)]
public ActionResult Confirm()
{
return View();
}
[RequiredStep (PreviousStep = "Confirm")]
public ActionResult ExecuteOrder()
{
return RedirectToAction("ThankYou");
}
[RequiredStep(PreviousStep = "ExecuteOrder")]
public ActionResult ThankYou()
{
return View();
}
</code></pre>
http://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net/1462296#14622960Answer by Piers Lawson for How do I handle page flow in MVC (particularly asp.net)Piers Lawson2009-09-22T20:07:42Z2009-09-22T20:07:42Z<p>I left the page flow up to the view, where I believe it belongs, so different views could have different page flows (e.g. for desktop browser clients or mobile phone clients etc.) I wrote it up on my blog: <a href="http://shouldersofgiants.co.uk/Blog/post/2009/09/16/A-RESTful-Wizard-Using-ASPNet-MVCe280a6-Perhaps.aspx" rel="nofollow">A RESTful Wizard Using ASP.Net MVC… Perhaps?</a></p>