asp页面跳转代码

最常见的是在asp中写js页面跳转。

服务器端跳转
<%
Response.Redirect("http://medy.cc")
Response.End
%>

客户端跳转
<meta http-equiv="refresh" content="3;url=http://medy.cc">

<script language="javascript" type="text/javascript">
alert("页面开始跳转到Me电影网站");
window.location="http://medy.cc"
</script>

<script language="VBScript">
alert("页面开始跳转到Me电影网站");
location.href="http://medy.cc"
</script>

你可能感兴趣的:(页面跳转)