在textbox中输入内容后,button提交后如何出现提示对话框后,并跳转到指定页面呢???

时间:2022-11-09 19:02:36
Response.Write("<script> alert(\"你已成功回复!\")</script>");
Response.Redirect("another.aspx?");
                这样写,只能出现提示,但不能跳转呀???如何改写呢??

6 个解决方案

#1


Response.Write("<script> alert('你已成功回复!');window.location='another.aspx?'; return false;</script>");

#2


用楼上的
如果你用了Redirect,那就弹不出来了

#3


同意

#4


谢谢,已结贴.散分完毕

#5


Response.Write("<script> alert(\"你已成功回复!\");window.location='test.aspx?'; return false;</script>");
Response.End();
这样写不行呀?????到不了test.aspx页呀??

#6


把这句去掉Response.End();

#1


Response.Write("<script> alert('你已成功回复!');window.location='another.aspx?'; return false;</script>");

#2


用楼上的
如果你用了Redirect,那就弹不出来了

#3


同意

#4


谢谢,已结贴.散分完毕

#5


Response.Write("<script> alert(\"你已成功回复!\");window.location='test.aspx?'; return false;</script>");
Response.End();
这样写不行呀?????到不了test.aspx页呀??

#6


把这句去掉Response.End();