当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP Redirect 方法
The Redirect method redirects the user to a different URL.
ASP Redirect(重定向)指令是用来给用户指向不同的URL链接的。
Response.Redirect URL |
Parameter 参数 | Description 描述 |
---|---|
URL | Required. The URL that the user (browser) is redirected to 必要参数. 为用户指向另一个网页的URL |
<% Response.Redirect "http://www.w3schools.com" %> |