过期域名预定抢注

 找回密碼
 免费注册

回帖變美女asp源碼(挺有意思)

[複製鏈接]
發表於 2007-6-3 16:44:33 | 顯示全部樓層 |閱讀模式
  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> - a9 H0 c- l0 x- @8 B2 `
  2. <%
    6 m& ?0 Y( ^' }0 l, ^2 H3 b4 A
  3. Function AllPath()
    1 Q8 X3 B. Z0 h0 }  f1 o. }
  4. Dim Domain,GFilePath 2 [0 o" J. w4 L% I% R
  5. Domain = Request.ServerVariables("SERVER_NAME")
    " h5 i) O2 s! X
  6. GFilePath = Request.ServerVariables("PATH_INFO")
    . q  h5 R* F& q( P' F0 n" V
  7. GFilePath = lcase(left(GFilePath,instrRev(GFilePath,"/"))) ! J$ L6 f1 ]: b4 C4 q  a: m
  8. AllPath = "http://www.w16888.com/" //唯一需要修改的地方,你的圖片目錄如果是在http://xxxx/myfile/angie/pic,這裡就寫http://xxx.com/myfile/angie/ ; " ]$ T& Q/ _; g) j3 s: V5 M
  9. End Function
    # P' |6 T! _- p% W8 `
  10. Function ShowFileList(folderspec)
    - [2 @$ \3 b) l  c" W  i
  11. Dim Path,objFSO,objFolder,count,objFile,nume,S , w& O5 M: q. z0 ]3 C
  12. Path = Server.MapPath(folderspec) & i% _# U( G7 |# l- ?7 N
  13. Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
    ; E" P2 u, {& h) b0 h- Q
  14. If objFSO.FolderExists(Path) Then
    9 h9 q$ Y: j9 M6 p( O/ h' |
  15. Set objFolder = objFSO.GetFolder(Path)
    ( ^  K. i3 [7 X; D  B% N  }
  16. count = 0 9 r. Z( {7 q* I' W! i4 {1 m
  17. For Each objFile in objFolder.Files - G! n7 A  @0 B5 h2 Q  h
  18. count = count+1 + q/ |9 Y  M( C7 J% s1 m
  19. Next # U2 W; G  V" \% |' j, U6 f
  20. randomize
    , n7 E! g9 d/ C' ~6 h1 e  u# B
  21. nume = Int((count*rnd)+1)
    # ~9 P8 u. D& s6 y6 C0 y, D4 Z( D
  22. S = 0 ! h6 G" s9 a" s1 }' e( a2 ]
  23. ShowFileList = "" $ M- d, b2 M% u/ N' V
  24. For Each objFile in objFolder.Files
    1 O& S6 j, @. F
  25. S = S + 1
    4 ^0 \( K* I, D5 ]7 p6 c
  26. If S = nume Then : k( n' ~5 f+ L; T7 E  s  r
  27. ShowFileList = objFile.Name 5 m6 _+ |, M% S+ a4 o1 A
  28. Exit For 1 U$ D' z; _6 M  `
  29. End If   m' z2 F2 R0 |4 t) `: U
  30. Next 3 Q1 |! n$ c2 Q
  31. Set objFolder = Nothing
    # [, H7 v3 {- ?+ }2 d8 z, K! k
  32. Else 2 o* \4 T6 R: }1 h9 D
  33. ShowFileList = "NO" & A5 V, R) ?0 C& U$ p
  34. End If : _7 G8 c7 T& g1 b" x9 h( H
  35. Set objFSO = Nothing
    9 b! p" I$ V. m, X. m- H
  36. End Function
    ! L8 u/ q: b) w' m% c' @
  37. Dim list,filename,address,str , a+ d: r; O, A  d
  38. list = trim(Request.QueryString("list")) 1 M( ?+ K5 z0 O. I2 v+ Q' r
  39. if list = "" then
    " I$ d9 p; z: [1 c9 R% T
  40. Response.write "本頁需要正確參數引入,您缺少相關的參數!正確格式如下:"&AllPath&"xxxxxx.asp?list=xxxxxx.jpg" ' a2 l' {% o& i6 T; @1 z! C
  41. Response.End()
    - r7 D; |0 d6 x( b! @4 l! Q/ ]9 m3 j
  42. end if 0 [5 Z/ R5 _8 G9 J! I. }3 T! ]
  43. filename = ShowFileList("./"&list&"/") : }! x1 R7 @5 b* D% v9 T
  44. if filename = "NO" then
      }3 L# ^/ M6 \$ C
  45. Response.write "您指定的目錄<b>"&list&"</b>不存在,請重新指定!"
    ( a2 o9 v- x0 w- }
  46. Response.End()
    ! }) [& q) i+ l  r8 }
  47. end if
    4 s+ M) a) {6 @5 w- W7 l' r
  48. if filename = "" then
    ( \9 ~: O  w2 f& P! x
  49. Response.write "您指定的目錄<b>"&list&"</b>沒有相關的圖片文件存在,請重新指定!" 4 \& o/ p; s( [* Q" T7 Q
  50. Response.End() - d. h+ ~' |: @9 Q0 V1 z( |
  51. end if
    5 V; V1 O& M5 L# X
  52. str = right(filename,3) 6 y  T' ~1 k/ f5 y
  53. if str<>"jpg" and str<>"gif" then
    " G# @1 m6 v, l, u0 s
  54. filename = "erro.gif" 7 ]8 K2 |1 D7 ?- t6 ]9 ~% x
  55. end if : H2 J4 k/ U' ?% A0 C: R3 Y# d# j
  56. address = AllPath&list&"/"
    9 a  Z. v0 A# I- c
  57. address = address&filename
    ' a) x! o- w. E. V/ H( H% ^
  58. %>
    $ x( }8 d8 u, S; @
  59. <%Response.redirect(address)%>
    . Z+ j+ z% y' |& c$ C3 [
  60. 把這段代碼保存為im.asp: _  N% B; r4 K6 e
  61. 把美女圖片放在pic文件夾下,把pic文件夾和im.asp放在網站根目錄下,在瀏覽器裡打開演
複製代碼
2 ]$ l1 @- Q9 \4 S7 s
[ 本帖最後由 tcbxh2008 於 2007-6-3 16:47 編輯 ]
發表於 2007-6-9 21:55:56 | 顯示全部樓層
呵呵,這個玩過的哦,不錯的`
回復 给力 爆菊

使用道具 舉報

發表於 2007-7-30 13:07:24 | 顯示全部樓層
看看
回復 给力 爆菊

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 免费注册

本版積分規則

點基跨境 數位編輯創業論壇

GMT+8, 2025-4-6 14:12

By DZ X3.5

小黑屋

快速回復 返回頂部 返回列表