Wizard.CancelButtonClick Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce al hacer clic en el botón Cancelar.
public:
event EventHandler ^ CancelButtonClick;
public event EventHandler CancelButtonClick;
member this.CancelButtonClick : EventHandler
Public Custom Event CancelButtonClick As EventHandler
Tipo de evento
Ejemplos
En el ejemplo de código siguiente se muestra cómo especificar un controlador de eventos para el CancelButtonClick evento. Cuando se hace clic en el botón Cancelar , la página se redirige a 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>
Comentarios
El CancelButtonClick evento se genera cuando se hace clic en el botón Cancelar del Wizard control. Use el CancelButtonClick evento para proporcionar procesamiento adicional cuando se haga clic en el botón Cancelar .
Para obtener más información acerca de cómo controlar eventos, vea controlar y provocar eventos.