asp

位置:IT落伍者 >> asp >> 浏览文章

Asp防止网页频繁刷新一法


发布日期:2019年01月26日
 
Asp防止网页频繁刷新一法
下面示例代码是防止用网页刷新过快如果多个页面使用最好将<%%>代码存为一个asp文件在需要的页面最前面include file使用

<%

dim RefreshIntervalTime

RefreshIntervalTime = 防止刷新的时间秒数表示不防止

If Not IsEmpty(Session(visit)) and isnumeric(Session(visit)) and int(RefreshIntervalTime) > Then

if (timer()int(Session(visit)))* < RefreshIntervalTime * then

Responsewrite (<meta httpequiv=refresh content=& RefreshIntervalTime & />)

Responsewrite (刷新过快请稍候)

Session(visit) = timer()

Responseend

end if

End If

Session(visit) = timer()

%><!DOCTYPE HTML PUBLIC //WC//DTD HTML Transitional//EN>

<html>

<head>

<title>Asp 防止网页频繁刷新一法 </title>

<meta httpequiv=ContentType content=text/html; charset=gb>

<link rel=stylesheet type=text/css >

<style type=text/css>

</style>

</head>

<body >

页面内容页面内容

</body>

</html>

上一篇:asp连接excel

下一篇:ASP中,常用的变量命名规则