Response.Redirect("another.aspx?");
这样写,只能出现提示,但不能跳转呀???如何改写呢??
6 个解决方案
#1
Response.Write("<script> alert('你已成功回复!');window.location='another.aspx?'; return false;</script>");
#2
用楼上的
如果你用了Redirect,那就弹不出来了
如果你用了Redirect,那就弹不出来了
#3
同意
#4
谢谢,已结贴.散分完毕
#5
Response.Write("<script> alert(\"你已成功回复!\");window.location='test.aspx?'; return false;</script>");
Response.End();
这样写不行呀?????到不了test.aspx页呀??
Response.End();
这样写不行呀?????到不了test.aspx页呀??
#6
把这句去掉Response.End();
#1
Response.Write("<script> alert('你已成功回复!');window.location='another.aspx?'; return false;</script>");
#2
用楼上的
如果你用了Redirect,那就弹不出来了
如果你用了Redirect,那就弹不出来了
#3
同意
#4
谢谢,已结贴.散分完毕
#5
Response.Write("<script> alert(\"你已成功回复!\");window.location='test.aspx?'; return false;</script>");
Response.End();
这样写不行呀?????到不了test.aspx页呀??
Response.End();
这样写不行呀?????到不了test.aspx页呀??
#6
把这句去掉Response.End();