include.asp
上传用户:sking1122
上传日期:2020-09-24
资源大小:1005k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <%
  2. '************** ASPSecurity 通用函数 ************
  3. ' Copyright 2006
  4. ' Create:2006-1-18
  5. ' Update:2006-4-17
  6. '************************************************
  7. '检查文件后缀,如果与预定的匹配即返回TRUE
  8. Function CheckExt(FileExt)
  9. If DimFileExt = "*" Then CheckExt = True
  10. Ext = Split(DimFileExt,",")
  11. For i = 0 To Ubound(Ext)
  12. If Lcase(FileExt) = Ext(i) Then 
  13. CheckExt = True
  14. Exit Function
  15. End If
  16. Next
  17. End Function
  18. Function GetDateModify(filepath)
  19. Set fso = CreateObject("Scripting.FileSystemObject")
  20.     Set f = fso.GetFile(filepath) 
  21. s = f.DateLastModified 
  22. set f = nothing
  23. set fso = nothing
  24. GetDateModify = s
  25. End Function
  26. Function GetDateCreate(filepath)
  27. Set fso = CreateObject("Scripting.FileSystemObject")
  28.     Set f = fso.GetFile(filepath) 
  29. s = f.DateCreated 
  30. set f = nothing
  31. set fso = nothing
  32. GetDateCreate = s
  33. End Function
  34. Function tURLEncode(Str)
  35. temp = Replace(Str, "%", "%25")
  36. temp = Replace(temp, "#", "%23")
  37. temp = Replace(temp, "&", "%26")
  38. tURLEncode = temp
  39. End Function
  40. %>