使用C#RSS刷新ASP.NET中消息框后的页面
本文关键字:消息 C#RSS 刷新 ASP NET 使用 | 更新日期: 2023-09-27 18:00:41
嘿,伙计们,在提交按钮上,我正在使用以下脚本在网页中显示消息框:
ClientScript.RegisterStartupScript(this.GetType(), "Alert", "alert('Wrong verification code');", true);
我想在按下此消息框中的ok按钮后刷新页面,即所有控件都应为空。
请帮我一下。
使用window.location.reload()
试试这个:
ClientScript.RegisterStartupScript
(
this.GetType(),
"Alert",
"alert('Wrong verification code'); window.location.reload();",
true
);
在警报消息后调用服务器端事件,如:
document.getElementById('ctl00_MainContentContainer_ticket1_YesBtn').click();
它将带您了解代码隐藏页。