ASP.net 登录控件帮助

本文关键字:帮助 控件 登录 net ASP | 更新日期: 2023-09-27 17:56:08

我正在玩Visual Studio 2008中提供的登录控件。我正在尝试创建一些失败文本并在登录错误时显示它,但我永远无法显示失败文本。 谁能给我一个快速的了解一下这个控件是如何工作的。

为什么不显示失败文本? 感谢您的帮助。

这是一些简单的代码...

protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
        {
            try
            {
               //user object that does the user validation
                _clsUser = new AdvantageUI.Classes.User();
                _clsUser.ValidateLoginAttempt(lgnLogin.UserName, lgnLogin.Password);  //if login failed exception thrown with error text.
                e.Authenticated = true;
//for use on additional pages as we will want to make sure user is valid and logged in.
                Session.Add("User", _clsUser);
            }
            catch (Exception ex)
            {
                lgnLogin.FailureText=ex.Message;
                //lgnLogin.DataBind();
            }
                Response.Redirect("ACBAdmin.aspx");
        }

ASP.net 登录控件帮助

你在尝试/捕获后重定向。