C# 可以每天更改一次密码

我必须写一个代码来更改密码


if (txtNewPassword.Text == txtConfirmPassword.Text)

{

    mSQL = "SELECT * FROM User WHERE userName = '" + txtUserName.Text + "' AND password = '" + txtPassword.Text + "'";

    mDT_Save = mDBHelper.GetTable(mSQL);

    if (mDT_Save.Rows.Count > 0)

    {

        for (int i = 0; i < mDT_Save.Rows.Count; i++)

        {

            mSQL = "UPDATE User SET password = '" + txtConfirmPassword.Text + "' WHERE userName = '" + Convert.ToString(mDT_Save.Rows[i]["userName"]) + "'";

            mDBHelper.ExecuteSQLNonQuery(mSQL);

        }

        MessageBox.Show("Password Changed Successfully");

        txtPassword.Text = txtConfirmPassword.Text;

        return;

   }

   else

   {

        MessageBox.Show("User Not Found");

        return;

   }

}

通过这种方式,用户可以随时更改密码,但我希望用户每天只能更改一次密码。这个条件怎么写?


MYYA
浏览 274回答 2
2回答

波斯汪

您需要向用户表中添加一个新列,在其中存储一个 DateTime 值,其中最后一个 DateTime 更改密码。您可以使用此函数获取实际的 DateTime:DateTime.Now现在,如果您想检查自上次更改密码以来是否已过去 24 小时,请执行以下操作:private bool CanChangePassword(){&nbsp; &nbsp; DateTime dt = //value from database (last password change);&nbsp; &nbsp; DateTime now = DateTime.Now;&nbsp; &nbsp; if (dt == DateTime.MinValue || now > dt.AddHours(24))&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; return true;&nbsp; &nbsp; }&nbsp; &nbsp; return false;}

慕勒3428872

用于DateTime changedpassworddate = DateTime.now();获取当前日期并将其放入变量中。将此变量存储在您的数据库中。下次用户输入密码时,您可以从数据库中获取 DateTime,将其与当前 DateTime 进行比较,如下所示:if(DateTime.now() < changedpassworddate.AddDays(1)){your abort code}else{your continue code}使用 add days 方法意味着用户每 24 小时只能更改一次密码。所以在 23:59 更改它然后在 0:01 更改它是行不通的。
打开App,查看更多内容
随时随地看视频慕课网APP