ASP禁止网页缓存,验证码生成,删除文件 iFileName 文件名 iPath 文件路径

%禁止网页缓存Response.Buffer = TrueResponse.ExpiresAbsolute = Now() – 1Response.Expires = 0Response.CacheControl = no-cache验证码生成dim yz2randomize timeryz2=Int((8999)*Rnd +1009)session(ok)=yz2%删除文件 iFileName 文件名 iPath 文件路径%有

Response.Buffer = True
Response.ExpiresAbsolute = Now() – 1
Response.Expires = 0
Response.CacheControl = “no-cache”
‘验证码生成
dim yz2
randomize timer
yz2=Int((8999)*Rnd +1009)
session(“ok”)=yz2
%>

<%
‘有关文件操作
‘Power by huang_ke@hotmail.com

‘删除文件 iFileName 文件名 iPath 文件路径
sub DelFile(iFileName,iPath)

realpath = Server.MapPath(iPath) & “\” & iFileName
Set fso = Server.CreateObject(“Scripting.FileSystemObject”)
fso.DeleteFile(realpath)

Set fso = nothing

end sub


作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部