1   1  /  1  页   跳转

ASP页面跳转

ASP页面跳转

不晓得大家有没有碰到在页面里面存在Response.Write函数时,
    如果在后面加上页面跳转(Response.Redirect)的话那个确认框体就不会弹出了,
    有没有办法让页面先弹出确认框体之后在跳转页面呢
最后编辑2006-11-24 17:32:34
分享到:
gototop
 

【回复“炯炯”的帖子】当然有了。你可以这样编写呀。如:<% name=Request.form("name")
if name="" or name=null Then
  Response.Write"<script>alert('你所输入的名字为空,请从新输入!');</script>"
  Response.Redirect"index.asp"
  Response.End
%>
或者你可以用这个Response.Write"<script>alert('你所输入的名字为空,请从新输入!');location.href='index.asp';</script>"
gototop
 

支持第1楼封神梦想
gototop
 

用Response.Write输出确认框体,然后再用页面跳转
gototop
 

晕,还以为是什么大问题呢。
下面这样的也可以,我一直是这么写的~~~
Response.Write("<script language=javascript>alert('请输入用户名!');this.location.href='/Admin_login.asp';</script>")
gototop
 

支持一樓的,就是這樣寫的
gototop
 
1   1  /  1  页   跳转
页面顶部
Powered by Discuz!NT