点击成功消息后如何进入下一页
本文关键字:何进入 一页 成功 消息 | 更新日期: 2023-09-27 18:27:01
我有两个页面,分别是Home.aspx和Master.aspx。我正在使用消息框发送成功消息。现在,当我点击消息框的"确定"按钮时,我想转到下一页(从Home.aspx到Master.aspx)。我的信息框代码是,
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alert", "alert('Employee Details Already Added In this ID ..!!');", true);
它显示了成功消息,但我不知道如何在点击"确定"按钮时将此页面重定向到下一页。
您可以将window.location
设置为从当前url导航到另一个url。
你的脚本应该是这样的:
alert('Employee Details Already Added In this ID ..!!'); window.location='/master.aspx';
它运行良好。。
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alert", "alert('Leave Type Added Succesfully ..!!');window.location='Leavetypedetail.aspx';", true);