asp重定向页面的方法总结
更新时间:2007年08月08日 11:44:26 作者:
返回上一页,一般用在判断信息提交是否完全之后<%
'******************************
'函数:GoBack()
'参数:无
'作者:阿里西西
'日期:2007/7/13
'描述:返回上一页,一般用在判断信息提交是否完全之后
'示例:<%call GoBack()%>
'******************************
Sub GoBack()
Response.write ("<script>history.go(-1)</script>")
End Sub
%>
重定向到另外的链接
<%
'******************************
'函数:Go(url)
'参数:url,相对或绝对路径及网址
'作者:阿里西西
'日期:2007/7/13
'描述:重定向到另外的链接
'示例:<%call Go(http://www.alixixi.com)%>
'******************************
Sub Go(url)
Response.write ("<script>location.href('" & url & "')</script>")
End Sub
%>
指定秒数重定向另外的连接
<%
'******************************
'函数:GoPage(url,s)
'参数:url,相对或绝对路径及网址;s,以秒为单位的时间后跳转
'作者:阿里西西
'日期:2007/7/13
'描述:指定秒数重定向另外的连接
'示例:<%call GoPage("http://www.alixixi.com",3)%>
'******************************
sub GoPage(url,s)
s=s*1000
Response.Write "<SCRIPT LANGUAGE=javascript>"
Response.Write "window.setTimeout("&chr(34)&"window.navigate('"&url&"')"&chr(34)&","&s&")"
Response.Write "</script>"
end sub
%>
'******************************
'函数:GoBack()
'参数:无
'作者:阿里西西
'日期:2007/7/13
'描述:返回上一页,一般用在判断信息提交是否完全之后
'示例:<%call GoBack()%>
'******************************
Sub GoBack()
Response.write ("<script>history.go(-1)</script>")
End Sub
%>
重定向到另外的链接
<%
'******************************
'函数:Go(url)
'参数:url,相对或绝对路径及网址
'作者:阿里西西
'日期:2007/7/13
'描述:重定向到另外的链接
'示例:<%call Go(http://www.alixixi.com)%>
'******************************
Sub Go(url)
Response.write ("<script>location.href('" & url & "')</script>")
End Sub
%>
指定秒数重定向另外的连接
<%
'******************************
'函数:GoPage(url,s)
'参数:url,相对或绝对路径及网址;s,以秒为单位的时间后跳转
'作者:阿里西西
'日期:2007/7/13
'描述:指定秒数重定向另外的连接
'示例:<%call GoPage("http://www.alixixi.com",3)%>
'******************************
sub GoPage(url,s)
s=s*1000
Response.Write "<SCRIPT LANGUAGE=javascript>"
Response.Write "window.setTimeout("&chr(34)&"window.navigate('"&url&"')"&chr(34)&","&s&")"
Response.Write "</script>"
end sub
%>
相关文章
在asp中使用js的encodeURIComponent方法
encodeURIComponent 方法返回一个已编码的 URI。如果您将编码结果传递给 decodeURIComponent,那么将返回初始的字符串2012-03-03asp ADO GetString函数与用GetString来提高ASP的速度
没想到asp下有getstring这个东西,看样子不熟悉这块啊,以后考虑用这个,应该不错,另外还有getrows等,都是asp下提高性能不错的函数。2007-12-12
最新评论