2

我在一个 ASP 站点上创建了一个“记住我”选项,客户说他们还希望它在用户字段中显示登录名,即使在他们按下“注销”后也是如此。只要我不再使用不同的登录名,它就可以工作。一旦我将值分配给后面代码中的文本框,即使我手动输入一个新值,旧值也将被使用。

例子:

  1. 我输入用户名/密码(例如 User1),单击“记住我”并成功登录。
  2. 我注销并被重定向回登录页面。在 page_load 事件中,它检测到存在一个有效的 cookie,其中存储了用户名 (User1),它读取值并设置文本字段。
  3. 我将登录名更改为其他内容(例如 User2),但它无法说出无效的用户/密码。奇怪的。
  4. 我检查了数据,它正在使用旧的文本字段(User1)。我尝试另一个(例如User3)并按登录。它失败了,当我检查 Text 属性时,它仍然显示 User1,即使在屏幕上显示的是 User3。

无论我做什么,一旦我在代码隐藏文件中设置它就不会改变。就好像一旦设置了文本字段,就无法更改它。这是不对的,但我对此没有很好的解释。

这是有问题的代码:

页面加载:

protected void Page_Load(object sender, EventArgs e)
{

    if (Request.ServerVariables["AUTH_USER"] != null && !Request.ServerVariables["AUTH_USER"].Equals(""))
    {
        login.Visible = false;
        logout.Visible = true;

        btnLogout.Text = "Logout " + Request.ServerVariables["AUTH_USER"];
    }
    else
    {
        login.Visible = true;
        logout.Visible = false;


        CheckLoginCookie();           
    }

}

设置cookie的代码:

private void SaveLoginCookie()
    {
        try
        {

            Response.Cookies["KYSUSR"].Value = txtLoginUsername.Text.Trim();
            Response.Cookies["KYSUSR"].Expires = DateTime.Today.AddMonths(6);

        }
        catch (Exception ex)
        {
            ExceptionHandling.SendErrorReport(this, ex);
        }
    }

加载cookie的代码:

   private void CheckLoginCookie()
    {
        try
        {            
            if (Request.Browser.Cookies)
            {
                if (Request.Cookies["KYSUSR"] != null && Request.Cookies["KSYFOR"] != null)
                {
                    // logged in as remember
                    if (Request.Cookies["KYSFOR"].Value == "R")
                        txtLoginUsername.Text = Request.Cookies["KYSUSR"].Value;
                    // once set here, the Text property never changes regardless of what is entered into it

                }                
            }            
        }
        catch (Exception ex)
        {
            ExceptionHandling.SendErrorReport(this, ex);
        }
    }

进行登录的代码:

protected void btnLogin_Click(object sender, EventArgs e)
    {
        try
        {
            String user = txtLoginUsername.Text.Trim();

            if (chkSaveUser.Checked)
                SaveLoginCookie();
            else
            {
                // set cookie as expired so browser will clear it
                Response.Cookies["KYSUSR"].Expires = DateTime.Today.AddDays(-1);                
            }

            if (CheckLogin(user, txtLoginPassword.Text))
            {
                if (chkSaveUser.Checked)
                {                    
                    FormsAuthentication.SetAuthCookie(user, true);                    
                }

                FormsAuthentication.RedirectFromLoginPage(txtLoginUsername.Text.Trim(), false);
            }
        }
        catch (Exception ex)
        {
            ExceptionHandling.SendErrorReport(this, ex);            
        }
    }

为什么 Text 属性不会改变?

4

1 回答 1

3

问题是您没有检查您的Page_Load方法中是否处于回发状态 - 这意味着即使用户在txtLoginUsernameTextbox 中放入其他内容,它也会被CheckLoginCookie.

protected void Page_Load(object sender, EventArgs e)
{

    if (Request.ServerVariables["AUTH_USER"] != null
        && !Request.ServerVariables["AUTH_USER"].Equals(""))
    {
        login.Visible = false;
        logout.Visible = true;

        btnLogout.Text = "Logout " + Request.ServerVariables["AUTH_USER"];
    }
    else
    {
        login.Visible = true;
        logout.Visible = false;

        // Only check the login cookie if we are not dealing with a form submission.
        if (!Page.IsPostBack)
        {
            CheckLoginCookie();
        }
    }
}
于 2012-10-02T18:54:38.300 回答