ASP ChangePassword 控件完成后运行客户端代码

发布于 2024-11-09 22:03:06 字数 143 浏览 5 评论 0原文

我在 DevExpress ASPxPopupControl 中有一个 .net ChangePassword 控件。我想在成功更改密码后自动关闭弹出窗口 - 但是,我看不到任何允许我将 popup.Hide() 挂接到继续按钮。这样的事可能吗?

I've got a .net ChangePassword control inside a DevExpress ASPxPopupControl. I'd like to automatically close the Popup window after the password has been successfully changed - however, I can't see any client-side controls that allow me to hook a popup.Hide() to the Continue button. Is such a thing possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

紫﹏色ふ单纯 2024-11-16 22:03:06

如果“继续”按钮是 AspxButton,请使用以下代码。 您需要确保 PopupControl 的 ClientInstanceName 设置为“popup”

 <ClientSideEvents Click="function(s, e){
    popup.Hide();
 }" />

If the Continue button is an AspxButton, use the below Code. You need to make sure the ClientInstanceName of the PopupControl is set to "popup"

 <ClientSideEvents Click="function(s, e){
    popup.Hide();
 }" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文