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

手机WAP编程

开发平台:

ASP/ASPX

  1. <% @LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
  2. <!--#include file="conn.inc"--><%
  3. '====================================================================
  4. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  5. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  6. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  7. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  8. '====================================================================
  9. %> <%Server.ScriptTimeout=9999
  10. '------------
  11. Dim strFilePath, strFileSize, strFileName
  12. Const adTypeBinary = 1
  13. Response.Buffer = True
  14. strFileName="dl.gif"
  15. FilePath=Server.MapPath(""&strFileName)    
  16. Response.Clear
  17. Set objStream = Server.CreateObject("ADODB.Stream")
  18. objStream.Open
  19. objStream.Type = adTypeBinary
  20. objStream.LoadFromFile FilePath
  21. strFileSize =objStream.size
  22. Response.AddHeader "Content-Length", strFileSize
  23. Response.Charset = "UTF-8" ' 客户端浏览器的字符集UTF-8
  24. Response.ContentType = "image/gif"
  25. Response.BinaryWrite objStream.Read
  26. Response.Flush
  27. objStream.Close
  28. Set objStream = Nothing
  29. dim sjhm,wap
  30. wap=Request("wap")
  31. grip=Request.ServerVariables("REMOTE_ADDR")
  32. sjhm = right(request("_mn_"),11)
  33. if sjhm<>"" then
  34. set zhhy=Server.CreateObject("ADODB.Recordset")
  35.   zhhssqly="select id from cnscu_gr order by id desc"
  36.   zhhy.open zhhssqly,conn,1,1
  37. mmdd=zhhy("id")+1
  38. mmnini="会员("&mmdd&")"
  39. zhhy.close
  40. set zhhy=nothing
  41. set objgbrs=Server.CreateObject("ADODB.Recordset")
  42.   ssql="select * from cnscu_gr where sjhm=" & sqlstr(sjhm)
  43.   objgbrs.open ssql,conn,1,3
  44. if objgbrs.eof then
  45. objgbrs.addnew
  46. objgbrs("sjhm")=sjhm
  47. objgbrs("mm")=right(sjhm,4)
  48. objgbrs("nini")=mmnini
  49. objgbrs("myip")=grip
  50. objgbrs("grsb")=wap
  51. objgbrs.update
  52. objgbrs.close
  53. set objgbrs=nothing
  54. conn.close
  55. set conn=nothing
  56. response.redirect "zhuce.gif" 
  57. response.end
  58. else
  59. Session("useid")=objgbrs("id")
  60. sql="update cnscu_gr set grsb='"& wap &"',dlsj=now() where cstr(id)="& Session("useid")
  61. conn.execute(sql)
  62. End if
  63. set objgbrs=nothing
  64. conn.close
  65. set conn=nothing
  66. function sqlstr(data)
  67.    sqlstr="'" & Replace(data,"'","'") & "'"
  68.   End function
  69. end if
  70. %>