网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ASP :: ASP Redirect 方法

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ASP Redirect 方法


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1025 :: ::

The Redirect method redirects the user to a different URL.
ASP Redirect(重定向)指令是用来给用户指向不同的URL链接的。

Syntax
语法

Response.Redirect URL

Parameter
参数
Description
描述
URL Required. The URL that the user (browser) is redirected to
必要参数. 为用户指向另一个网页的URL

Examples
举例

<%
Response.Redirect "http://www.w3schools.com"
%>

评论 (0) All