RadTabStrip can be used to create wizard-like interfaces.
    
    
        This example shows how to build such a wizard interface using dynamic pageviews
        and user controls.
    
    
        Each user control contains a button that navigates to the next
        tab:
    
    private void GoToNextTab()
{
    RadTabStrip tabStrip = (RadTabStrip)this.NamingContainer.FindControl("RadTabStrip1");
    RadTab flightTab = tabStrip.FindTabByText("Flight");
    flightTab.Enabled = true;
    flightTab.Selected = true;
    RadTab passangerstTab = tabStrip.FindTabByText("Passengers");
    RadTab paymentTab = tabStrip.FindTabByText("Payment");
    passangerstTab.Enabled = paymentTab.Enabled = false;
}
 
    Choose your destination, fill the empty fields and use the navigation buttons, in order to build and pay your flight.