Wizard.CancelButtonClick 事件

定义

单击“取消”按钮时发生。Occurs when the Cancel button is clicked.

public:
 event EventHandler ^ CancelButtonClick;
public event EventHandler CancelButtonClick;
member this.CancelButtonClick : EventHandler 
Public Custom Event CancelButtonClick As EventHandler 

事件类型

EventHandler

示例

下面的代码示例演示如何为事件指定事件处理程序 CancelButtonClickThe following code example demonstrates how to specify an event handler for the CancelButtonClick event. 单击 " 取消 " 按钮后,该页将重定向到 http://www.wingtiptoys.com/When the Cancel button is clicked, the page is redirected to http://www.wingtiptoys.com/.

<%@ Page Language="C#" %>

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

<script runat="server">

  void OnCancelButtonClick(object sender, EventArgs e)
  {
    // When the Cancel button is clicked, redirect to http://www.wingtiptoys.com/.
    Response.Redirect("http://www.wingtiptoys.com/");
  }

</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">
        <WizardSteps>
          <asp:WizardStep title="Step 1" 
            runat="server">
          </asp:WizardStep>
          <asp:WizardStep title="Step 2" 
            runat="server">
          </asp:WizardStep>
        </WizardSteps>
        <HeaderTemplate>
          <b>CancelButtonClick Example</b>
        </HeaderTemplate>
      </asp:Wizard>
    </form>
  </body>
</html>
<%@ 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>

注解

CancelButtonClick当单击控件上的 "取消" 按钮时,将引发事件 WizardThe CancelButtonClick event is raised when the Cancel button on the Wizard control is clicked. CancelButtonClick当单击 "取消" 按钮时,可以使用事件来提供其他处理。Use the CancelButtonClick event to provide additional processing when the Cancel button is clicked.

有关如何处理事件的详细信息,请参阅 处理和引发事件For more information about how to handle events, see Handling and Raising Events.

适用于

另请参阅