asp中转到另一个页面的代码是什么?

2024-12-03 18:23:10
推荐回答(3个)
回答(1):

response.Redirect
如:response.Redirect(index.asp)
===================
或是在Meta中的REFRESH
如:
===================
或是js中的.
如:

如果要在asp中显示一个js跳转的话,如下
response.write("alert('点击确定,跳转');location.href='index.asp'")
这样,在跳转前会弹出一个提示.

回答(2):

Response.Redirect "另一个文件全名"

Server.Transfer "另一个文件全名"

回答(3):

Response.Redirect("index.asp")