How do I handle page flow in MVC (particularly asp.net) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T13:52:01Z http://stackoverflow.com/feeds/question/16330 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/16330/how-do-i-handle-page-flow-in-mvc-particularly-asp-net 2 How do I handle page flow in MVC (particularly asp.net) TheDeeno 2008-08-19T14:53:06Z 2009-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#16337 0 Answer by Nick Berardi for How do I handle page flow in MVC (particularly asp.net) Nick Berardi 2008-08-19T14:54:53Z 2008-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#33604 5 Answer by Matt Hinze for How do I handle page flow in MVC (particularly asp.net) Matt Hinze 2008-08-28T23:07:28Z 2008-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#41878 0 Answer by Ben Scheirman for How do I handle page flow in MVC (particularly asp.net) Ben Scheirman 2008-09-03T15:05:34Z 2008-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#257555 0 Answer by CodeClimber for How do I handle page flow in MVC (particularly asp.net) CodeClimber 2008-11-02T23:13:44Z 2008-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#1462296 0 Answer by Piers Lawson for How do I handle page flow in MVC (particularly asp.net) Piers Lawson 2009-09-22T20:07:42Z 2009-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>