New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Validation

Departure
Return




Choose your destination, fill the empty fields and use the navigation buttons, in order to build and pay your flight.

RadWizard can be used in different Validation scenarios. This can be easily achieved by setting the ValidationGroup property of a RadWizardStep to the same value a the ValidationGroup of the Validation control.

  • DefaultVB.aspx
  • FlightVB.ascx
    • FlightVB.ascx
    • PassengersVB.ascx
    • PaymentVB.ascx
    • SearchVB.ascx
  • DefaultVB.aspx.vb
  • scripts.js
  • styles.css
<%@ Page Language="vb" CodeFile="DefaultVB.aspx.vb" AutoEventWireup="false" Inherits="Wizard.Examples.Functionality.Validation.DefaultVB" %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
    <link rel="stylesheet" href="styles.css" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
     <script type="text/javascript" src="scripts.js"></script>
     <div class="demo-container">
        <telerik:RadWizard RenderMode="Lightweight" ID="RadWizard1" OnClientLoad="demo.clientLoad" OnClientButtonClicking="demo.clientButtonClicking" runat="server" 
             OnWizardStepCreated="RadWizard1_WizardStepCreated" Width="570px" Height="340px"
            Skin="Silk" >
        </telerik:RadWizard>
    </div>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance