Getting Started: Windows Workflow Foundation and ASP.NET

Getting Started: Windows Workflow Foundation and ASP.NET

Windows Workflow Foundation is a great technology for creating workflows. It can be used in combination with different technologies, for example SharePoint, WCF, etc. In this article we will combine the Windows Workflow Foundation with ASP.NET.

The Scenario

To keep things easy, we will create a very simple greeting application. The user will type his name into a TextBox, click a button, and a greeting with his name will appear. Sounds simple? It is!

File - New - Project

Start by creating an empty Visual Studio Solution:

Create a blank solution

Name it whatever you want. We will now add two projects to this solution - An ASP.NET Empty Web Application (Workflow.Web) and an Activitiy Library (WorkflowLibrary).

Create the ASP.NET Web Application

Create the Activity Library

Set it up

On the side of our Workflow

For now, just delete the Activity1.xaml file.

On the side of our Website

Create a new Web Form and name it Default.aspx:

Add the Web Form

We need four controls on our site:

  • A Label, which only shows "Your name: "; no more functionality
  • A TextBox, where the user can type in his name
  • A Button, which will be trigger the workflow
  • A Label, which displays the result of the workflow, our greeting

The code is unspectacular; you only need a click event on the Button control:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Workflow.Web.Default" %> 

<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:Label Text="Your name: " runat="server" />
            <asp:TextBox ID="TextBoxName" runat="server" />
            <asp:Button ID="ButtonCreateGreeting" Text="Create greeting" runat="server"
                     onclick="ButtonCreateGreeting_Click" />
            <br />
            <asp:Label ID="LabelGreeting" Text="" runat="server" />
        </div>
    </form>
</body>
</html>

Create the Workflow

Open the Greeting.xaml. First we need an In argument and an Out argument. The In argument will take the name of our user. The Out argument will hold the greeting and will be assigned to the greeting label on our website.
Open the Arguments tab at the bottom of the designer. The first argument has the name ArgUserName, the direction In and the Argument type String. The second argument takes the name Result, the direction Out and the Argument type String, too. In both cases you can leave the cell for the Default value empty. The Result will look like this:

Creating the In and Out arguments

Add a Sequence Activity to it. The Sequence Activity ensures that the child activities runs according to a single defined ordering.

Adding a Sequence Activity

Inside the Sequence Activity add an Assign Activity. This activity will assign the greeting to our earlier created Result argument.
The To property will be our Result argument. The Value property can be created with the Expression Editor. The next picture shows the expression.

Assign the greeting to the Out argument

Please note, every expression in the Workflow Designer must be a Visual Basic expression.

The result should look as follows:

The finished workflow

Combine it

To complete our application, add a reference to the WorkflowLibrary in our web application. We also need the WorkflowInvoker class, so add a reference to System.Activities to our web application.

In the click method of our button add the following code:

protected void ButtonCreateGreeting_Click(object sender, EventArgs e) 
{
    string
username = TextBoxName.Text;
    Greeting
greeting = new Greeting { ArgUserName = username };
    IDictionary<string, object> results = WorkflowInvoker.Invoke(greeting);
    LabelGreeting.Text = results["Result"].ToString();
}

Does it look like magic? Not really. First we retrieve the entered name from the TextBox. Next we need an instance of our workflow and pass in the username as the In argument. To invoke our Workflow we call the Invoke-method with our workflow instance. It retrieves the Out arguments as a Dictionary, where the key will be a string and the value an object. As the last thing we just have to get our Result argument out of the Dictionary and assign it to our greeting Label. That's it! Run the project! The result should look like this:

The result

Lessons Learned

We have seen how to create a simple workflow with In and Out arguments and how values could be assigned. We have also seen how to invoke a workflow, how to pass in arguments and how to retrieve arguments from the workflow. At the UI side was nothing special and you can work similar in other technologies, such as Silverlight.

Sample Application

The sample application can be download here.


See Also


Other Languages

This article is also available in the following languages:

Deutsch (de-DE)

 

Leave a Comment
  • Please add 6 and 7 and type the answer here:
  • Post
Wiki - Revision Comment List(Revision Comment)
Sort by: Published Date | Most Recent | Most Useful
Comments
  • Carsten Siemens edited Revision 19. Comment: fixed typo

  • Richard Mueller edited Revision 16. Comment: Replace RGB values with color names in HTML to restore colors

  • Richard Mueller edited Revision 15. Comment: Fixed typo

  • Horizon_Net edited Revision 7. Comment: added see also section

  • Horizon_Net edited Revision 6. Comment: added link to german version

  • Horizon_Net edited Revision 5. Comment: added language tag

  • Horizon_Net edited Revision 4. Comment: Changed download link

  • Horizon_Net edited Revision 3. Comment: added language tag and link for the download of the sample application

  • Horizon_Net edited Revision 2. Comment: Removed first header and added tags.

  • Ed Price - MSFT edited Revision 1. Comment: Updated title. Added TOC and tags. Thanks!

Page 1 of 2 (11 items) 12
Wikis - Comment List
Sort by: Published Date | Most Recent | Most Useful
Posting comments is temporarily disabled until 10:00am PST on Saturday, December 14th. Thank you for your patience.
Comments
  • Horizon_Net edited Original. Comment: Updated code formatting.

  • Ed Price - MSFT edited Revision 1. Comment: Updated title. Added TOC and tags. Thanks!

  • Horizon_Net edited Revision 2. Comment: Removed first header and added tags.

  • Horizon_Net edited Revision 3. Comment: added language tag and link for the download of the sample application

  • Horizon_Net edited Revision 4. Comment: Changed download link

  • Horizon_Net edited Revision 5. Comment: added language tag

  • Horizon_Net edited Revision 6. Comment: added link to german version

  • Horizon_Net edited Revision 7. Comment: added see also section

  • Good Article.

  • Congratulations on being featured on the home page of TechNet Wiki!

  • Thanks, Ed!

  • Richard Mueller edited Revision 15. Comment: Fixed typo

  • Richard Mueller edited Revision 16. Comment: Replace RGB values with color names in HTML to restore colors

  • Thank you.

  • Good Article

Page 1 of 2 (19 items) 12