response.Redirect
如:response.Redirect(index.asp)
===================
或是在Meta中的REFRESH
如:
===================
或是js中的.
如:
如果要在asp中显示一个js跳转的话,如下
response.write("alert('点击确定,跳转');location.href='index.asp'")
这样,在跳转前会弹出一个提示.
Response.Redirect "另一个文件全名"
或
Server.Transfer "另一个文件全名"
Response.Redirect("index.asp")