lastpasswordchangedate

lastpasswordchangedate

本文介绍了如何在mssql 2008数据库中设置日期时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我怀疑..我有一个用户名,密码和lastpasswordchangedate的数据库....当我们重置密码lastpasswordchangedate没有改变..它显示旧日期本身..我们可以改变它吗?

I have a doubt..i have a database with username,password and lastpasswordchangedate....when we reset password the lastpasswordchangedate not changing..it shows the old date itself..how can we change it???

推荐答案

using (SqlCommand cmd = new SqlCommand("UPDATE MyTable SET Password=@PW, lastpasswordchangedate=@PCD", con))
   {
   cmd.Parameters.AddWithValue("@PW", passwordHashed);
   cmd.Parameters.AddWithValue("@PCD", DateTime.Now);
   ...



这篇关于如何在mssql 2008数据库中设置日期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 22:38