Asp.net更改密码控制
在我的 asp.net Web 应用程序中。我有一个更改密码表格无法正常工作。当 LoginEvent 更改时,我将其设置为 false。它改变得很好,但控件认为它失败了。我还需要做些什么吗?
control.Objects.User user = GlobalClass.GlobalVariables.User;
string currentRealPassword = control.Data.Users.GetUserPassword(user);
if (user != null && ChangeUserPassword.CurrentPassword.Trim() == currentRealPassword)
{
e.Cancel = !control.Data.Users.UpdateUserPassword(user, ChangeUserPassword.NewPassword);
}`enter code here`
In my asp.net Web app. I have a change password form that is not working properly. I set the LoginEvent cancel to false when it has changed. It changes ok, but the control thinks that it fails. Is there something else I need to do?
control.Objects.User user = GlobalClass.GlobalVariables.User;
string currentRealPassword = control.Data.Users.GetUserPassword(user);
if (user != null && ChangeUserPassword.CurrentPassword.Trim() == currentRealPassword)
{
e.Cancel = !control.Data.Users.UpdateUserPassword(user, ChangeUserPassword.NewPassword);
}`enter code here`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯...代码无济于事:P
什么“ UpdateUserPassword”返回?假设布尔。
一个提示... c#是OOP:P
您是从php来的吗?
Hm...the code doesn't helps:P
What "UpdateUserPassword" Returns? suppose bool.
One hint... C# is OOP:P
Are you comming from php?