Login error là gì

Facebook

邮箱或手机号 密码

忘记帐户?

注册

无法处理你的请求

此请求遇到了问题。我们会尽快将它修复。

  • 返回首页

  • 中文[简体]
  • English [US]
  • 日本語
  • 한국어
  • Français [France]
  • Bahasa Indonesia
  • Polski
  • Español
  • Português [Brasil]
  • Deutsch
  • Italiano

  • 注册
  • 登录
  • Messenger
  • Facebook Lite
  • Watch
  • 地点
  • 游戏
  • Marketplace
  • Meta Pay
  • Oculus
  • Portal
  • Instagram
  • Bulletin
  • 筹款活动
  • 服务
  • 选民信息中心
  • 小组
  • 关于
  • 创建广告
  • 创建公共主页
  • 开发者
  • 招聘信息
  • 隐私权政策
  • 隐私中心
  • Cookie
  • Ad Choices
  • 条款
  • 帮助中心
  • 联系人上传和非用户
  • 设置
  • 动态记录

Meta © 2022

Failed login attempt from %#: wrong password

Lỗi đăng nhập từ % #: mật khẩu không đúng

Login via SASL [%#] failed. The server may not support %#, or the password may be wrong. %

Đăng nhập qua SASL [% #] thất bại. Có thể máy phục vụ không hỗ trợ % #, hoặc mật khẩu sai. %

Login via APOP failed. The server %# may not support APOP, although it claims to support it, or the password may be wrong. %

Đăng nhập qua APOP thất bại. Có thể máy phục vụ % # không hỗ trợ APOP, mặc dù nó đòi hỗ trợ, hoặc mật khẩu sai. %

Operation failed. Possible reasons are: permission denied or invalid Samba configuration [see cupsaddsmb manual page for detailed information, you need CUPS version #.# or higher]. You may want to try again with another login/password

Thao tác bị lỗi. Lý do có thể là: không đủ quyền, hay cấu hình Samba không hợp lệ [xem trang hướng dẫn cupsaddsmb để tìm thông tin chi tiết: bạn cần có phần mềm CUPS phiên bản #. #. # hay mới hơn]. Có lẽ bạn muốn thử lại bằng tên đăng nhập/mật khẩu khác

Chuyển đến nội dung chính

Trình duyệt này không còn được hỗ trợ nữa.

Hãy nâng cấp lên Microsoft Edge để tận dụng các tính năng mới nhất, bản cập nhật bảo mật và hỗ trợ kỹ thuật.

Login.LoginError Event

  • Reference

Definition

In this article

Occurs when a login error is detected.

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

Event Type

EventHandler

Examples

The following code example uses the LoginError event to display Help links to the user when a login attempt fails.





void OnLoginError[object sender, EventArgs e]
{
    Login1.HelpPageText = "Help with logging in...";
    Login1.CreateUserText = "Create a new user...";
    Login1.PasswordRecoveryText = "Forgot your password?";
}



    
    ASP.NET Example


        
            
            
        
    





Sub OnLoginError[ByVal sender As Object, ByVal e As EventArgs]
    Login1.HelpPageText = "Help with logging in..."
    Login1.CreateUserText = "Create a new user..."
    Login1.PasswordRecoveryText = "Forgot your password?"
End Sub



    
    ASP.NET Example


        
            
            
        
    

Remarks

The LoginError event is raised when the credentials entered by the user are invalid. You can use the LoginError event to redirect the user to a custom error page, to offer additional help, or to log failed login attempts.

For more information about how to handle events, see Handling and Raising Events.

Applies to

See also

  • OnLoginError[EventArgs]
  • ASP.NET Login Controls Overview

Chủ Đề