ASP Net Controls ASP.Net Tutorial

<%@ Page Language="C#" 
         AutoEventWireup="true" 
         CodeFile="Default.aspx.cs"
         Inherits="CustomNavigationWizard" %>



  Custom Navigation Wizard
  
    .wizardStepContent { padding: 5px; }
    .wizardNavContent { padding: 4px; }
    


  
      BorderColor="#999999" BorderWidth="1px" Font-Names="Verdana,Arial,Helvetica" Font-Size="Small"
    Height="200">
    
    
      
        .gif' alt='Checkout <%= myWizard.ActiveStep.Title%>' />
      

    
    
    
      
        
          
            ' />
          

          
            ' />
          

        
      
    

    
    
    
    
      
                  CommandName="MoveNext" AlternateText="Sign-In" />
      
    

    
      
                  CommandName="MovePrevious" AlternateText="Previous" />
                  CommandName="MoveNext" AlternateText="Next" />
      
    

    
      
                  CommandName="MovePrevious" AlternateText="Previous" />      
                  CommandName="MoveFinish" AlternateText="Make Payment" />
      
    

    
      
        Name
        
        Email
        
      
      
        Address
      
      
        Shipping
        
          Air Mail
          Fed Ex
        
      
      
        Payment
      
      
        Confirmation
      
    

  
  


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class CustomNavigationWizard: System.Web.UI.Page
{
    public object GetStepImage(string title)
    {
        return "images/sidebar_" + title + ".gif";
    }
    public object GetSelectedStepImage(string title)
    {
        return "images/sidebar_" + title + "_selected.gif";
    }
}