|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件避免用户频仍革新页面,能够起到一点点的感化。办法1,session手艺:
程序代码<%
DimSplitReFlashPage
DimDoReflashPage
dimshuaxin_time
DoReflashPage=true
shuaxin_time=10
ReflashTime=Now()
if(notisnull(session("ReflashTime")))andcint(shuaxin_time)>0andDoReflashPagethen
ifDateDiff("s",session("ReflashTime"),Now())<cint(shuaxin_time)then
response.write"<METAhttp-equiv=Content-Typecontent=text/html;charset=gb2312><metaHTTP-EQUIV=REFRESHCONTENT=3>本页面升引了防革新机制,请不要在<b><fontcolor=ff0000>"&shuaxin_time&"</font></b>秒内一连革新本页面<BR>正在翻开页面,请稍候……"
response.end
else
session("ReflashTime")=Now()
endif
elseifisnull(session("ReflashTime"))andcint(shuaxin_time)>0andDoReflashPagethen
Session("ReflashTime")=Now()
endif
randomizetimer
regjm=int(rnd*8998)+1000
%>
办法2,cookie手艺:
程序代码<%
DimURL
IfDateDiff("s",Request.Cookies("oesun")("vitistime"),Now())<2Then
URL=Request.ServerVariables("Http_REFERER")
Response.Write("<metahttp-equiv=""refresh""content=""2;URL="&URL&""">")
Response.Write("防革新,两秒后主动跳转")
Response.End
EndIF
Response.Cookies("oesun")("vitistime")=Now()
%>使用filesystemobject,可以对服务器上的文件进行操作,浏览、复制、移动、删除等。有ado的支持,asp对数据库的操作非常得心应手。你甚至可以像使用本地数据库那样,管理远程主机上的数据库,对表格、记录进行各种操作。 |
|