Click here to Skip to main content
15,886,069 members
Articles / Web Development / ASP.NET

Navigational Workflows Unleashed in WWF/ASP.NET 3.5

Rate me:
Please Sign up or sign in to vote.
4.97/5 (42 votes)
21 Oct 2008CPOL18 min read 224.9K   1.6K   165  
Case-study on the internals of a Navigational Workflow engine for a fictional dating website called “World Wide Dating”.
using System;

namespace DateSite
{
    /// <summary>
    /// This page is used to show an example of how to recover when an unknown
    /// error occurs. To generate this pseudo unknown error, click the "generate
    /// unknown error" hyperlink on the NavigationPane. The navigation pane is
    /// visible on all pages except for default.aspx.
    /// </summary>
    public partial class unknownError : System.Web.UI.Page
    {
        /// <summary>
        /// Attempts recovery of this error by making an attempt to 
        /// rehydrate the workflow instance that is in session.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnOk_Click(object sender, EventArgs e)
        {
            WorkflowManager workflowManager = new WorkflowManager(Application, Session, Request, Response);
            string pageToGoTo = workflowManager.Rehydrate(workflowManager.CurrentWorkflowInstanceId);
            workflowManager.ManagedRedirect(pageToGoTo);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder Turing Inc.
United States United States

Comments and Discussions