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

ASP.NET Page Navigation Using Workflow 4.0

Rate me:
Please Sign up or sign in to vote.
4.70/5 (46 votes)
21 Feb 2011CPOL4 min read 130.6K   5.3K   88  
This tutorial demonstrates how Workflow 4.0 can be used for page navigation in ASP.NET.
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="BostonDealer.SiteMaster" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
    <title></title>
    <link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />
    <asp:ContentPlaceHolder ID="HeadContent" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form runat="server">
    <div class="page">
        <div class="header">
        <h1>
                    Boston Car & Motorcycle Dealers (ASP.Net Workflow 4)
           </h1>
         </div>
          <div class="main">
                     <h2> 
               <a href="HomePage.aspx">HomePage</a></h2>

            <asp:ContentPlaceHolder ID="MainContent" runat="server"/>
        </div>
    </div>
     
    <div class="footer">
    
        <a href="http://www.NewsDabba.com" target="_blank" style="font-size:large">NewsDabba.com</a><br />
        <a href="http://maps.NewsDabba.com" target="_blank" style="font-size:large">News By Map</a><br />
    </div>
    </form>
</body>
</html>

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
Architect
United States United States
Developing software since 2000.

Comments and Discussions