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

前端之家收集整理的这篇文章主要介绍了ASP'禁止网页缓存,验证码生成,删除文件 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
%>

删除文件 iFileName 文件名 iPath 文件路径
<%
 '有关文件操作
 '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


原文链接:/asp/403211.html

猜你在找的Asp相关文章