点击一个按钮弹出一个提示框然后是跳转到另一个页面,但是提示框弹不出,直接跳转了,怎么办?
这是弹出提示窗代码
private void ShowMessage(string message) { ScriptManager.RegisterStartupScript(this.AjaxPanel5, this.AjaxPanel5.GetType(), Guid.NewGuid().ToString(), "alert('" + message + "')", true); }
这是按钮点击的部分代码
this.ShowMessage("Custom Commands have been sent to the EKS lead for review"); this.Response.Redirect("CustomCommand.aspx");
你这个根本做不到,是否需要有弹出框的,你放一个标示到客户端,比如放1到hidden控件中标示要做某个事情,然后客户端在widnow.onload=function(){
if(doucment.getelementbyid("hidden1").value="1")
{
alert("diaozhuan")?
window.location.href="目的地的url";
}
}
OK.谢了
可以换一个跳转方法;
this.ShowMessage("Custom Commands have been sent to the EKS lead for review");
ScriptManager.RegisterStartupScript(this.AjaxPanel5, this.AjaxPanel5.GetType(), Guid.NewGuid().ToString(), "window.location.href='default2.aspx';", true);
谢谢你了