它山之石可以攻玉

键盘上的生活
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

<%'禁止网页缓存
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

%>