Udostępnij za pośrednictwem


LoginCancelEventArgs.Cancel Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy zdarzenie powinno zostać anulowane.

public:
 property bool Cancel { bool get(); void set(bool value); };
public bool Cancel { get; set; }
member this.Cancel : bool with get, set
Public Property Cancel As Boolean

Wartość właściwości

true jeśli zdarzenie powinno zostać anulowane; w przeciwnym razie , false.

Przykłady

Poniższy przykład kodu używa LoggingIn zdarzenia, aby upewnić się, że użytkownik wprowadził dobrze sformułowany adres e-mail we UserName właściwości . Jeśli nie, LoggingIn program obsługi zdarzeń ustawia Cancel właściwość na true, a zostanie wyświetlony komunikat o błędzie. Aby zapoznać się z plikiem .aspx, którego można użyć do uruchomienia przykładu LoginCancelEventArgs , zobacz temat.

public partial class LoginCancelEventArgscs_aspx : System.Web.UI.Page
{

    bool IsValidEmail(string strIn)
    {
        // Return true if strIn is in valid email format.
        return System.Text.RegularExpressions.Regex.IsMatch(strIn, 
            @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$");
    }
    
    protected void OnLoggingIn(object sender, System.Web.UI.WebControls.LoginCancelEventArgs e)
    {
        if (!IsValidEmail(Login1.UserName))
        {
            Login1.InstructionText = "You must enter a valid email address.";
            e.Cancel = true;
        }
        else
        {
            Login1.InstructionText = String.Empty;
        }
    }
}
Partial Class LoginCancelEventArgsvb_aspx
    Inherits System.Web.UI.Page

    Function IsValidEmail(ByVal strIn As String) As Boolean
        ' Return true if strIn is in valid email format.
        Return Regex.IsMatch(strIn, _
            ("^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"))
    End Function

    Protected Sub OnLoggingIn(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.LoginCancelEventArgs)
        If Not IsValidEmail(Login1.UserName) Then
            Login1.InstructionText = "You must enter a valid email address."
            e.Cancel = True
        Else
            Login1.InstructionText = String.Empty
        End If
    End Sub

End Class

Uwagi

Możesz użyć Cancel właściwości , aby wskazać, czy zdarzenie, takie jak LoggingIn zdarzenie, LoggingOut zdarzenie lub ChangingPassword zdarzenie, powinno zostać anulowane.

Dotyczy

Zobacz też