This documentation is archived and is not being maintained.

Wizard.CancelButtonClick Event

Occurs when the Cancel button is clicked.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

'Declaration
Public Event CancelButtonClick As EventHandler
'Usage
Dim instance As Wizard 
Dim handler As EventHandler 

AddHandler instance.CancelButtonClick, handler
<asp:Wizard OnCancelButtonClick="EventHandler" />

The CancelButtonClick event is raised when the Cancel button on the Wizard control is clicked. Use the CancelButtonClick event to provide additional processing when the Cancel button is clicked.

For more information about handling events, see Consuming Events.

The following code example demonstrates how to specify an event handler for the CancelButtonClick event. When the Cancel button is clicked, the page is redirected to http://www.wingtiptoys.com/.

<%@ Page Language="VB" %>

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

<script runat="server">

  Sub OnCancelButtonClick(ByVal sender As Object, ByVal e As EventArgs)
    ' When the Cancel button is clicked, redirect to http://www.wingtiptoys.com/.
    Response.Redirect("http://www.wingtiptoys.com/")
  End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
      <asp:Wizard id="Wizard1" 
        runat="server" 
        displaycancelbutton="True"
        oncancelbuttonclick="OnCancelButtonClick">
        <HeaderTemplate>
          <b>CancelButtonClick Example</b>
        </HeaderTemplate>
        <WizardSteps>
          <asp:WizardStep title="Step 1" 
            runat="server">
          </asp:WizardStep>
          <asp:WizardStep title="Step 2" 
            runat="server">
          </asp:WizardStep>
        </WizardSteps>
      </asp:Wizard>
    </form>
  </body>
</html>

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: