Asp.net更改密码控制

发布于 2024-12-04 13:10:44 字数 490 浏览 2 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南汐寒笙箫 2024-12-11 13:10:44

嗯...代码无济于事: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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文