Click here to Skip to main content
15,885,890 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”.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="NavigationPane.ascx.cs" Inherits="DateSite.NavigationPane" %>
<div style="padding-left: 15px;">
    <ul style="border-left: dashed 1px black; padding-left: 30px;">
        <li>
            <asp:LinkButton ID="lnkBasics" Text="1. Skip To Basics Page" runat="server" onclick="lnkBasics_Click"></asp:LinkButton>
        </li>
        <li>
            <asp:LinkButton ID="lnkAppearance" Text="2. Skip To Appearance Page" runat="server" onclick="lnkAppearance_Click"></asp:LinkButton>
        </li>
        <li>
            <asp:LinkButton ID="lnkLifestyle" Text="3. Skip To Lifestyle Page" runat="server" onclick="lnkLifestyle_Click"></asp:LinkButton>
        </li>
        <li>
            <asp:LinkButton ID="lnkInterests" Text="4. Skip To Interests Page" runat="server" onclick="lnkInterests_Click"></asp:LinkButton>
        </li>
        <li>
            <asp:LinkButton ID="lnkComplete" Text="5. Skip To Complete Page" runat="server" onclick="lnkComplete_Click"></asp:LinkButton>
        </li>        
    </ul>    
    
    <ul style="border-left: dashed 1px black; padding-left: 30px;">
        <li>
            <asp:LinkButton ID="lnkNewWorkflow" Text="Create New Workflow" runat="server" onclick="lnkNewWorkflow_Click"></asp:LinkButton>
        </li>
        <li>
            <asp:LinkButton ID="lnkGenerateUnknownError" Text="Generate &quot;Unknown&quot; Error" runat="server" onclick="lnkGenerateUnknownError_Click"></asp:LinkButton>
        </li>
    </ul>
</div>

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