func.asp
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. <%
  2. sub showerr(str)
  3. response.write "<script>alert('"&str&"');history.go(-1);</script>"
  4. response.end
  5. end sub
  6. sub showmsg(str,url)
  7. response.write "<script>alert('"&str&"');location.href='"&url&"';</script>"
  8. end sub
  9. function htmlencode(fString)   
  10.   fString = replace(fString, ">", "&gt;")
  11.   fString = replace(fString, "<", "&lt;")
  12.   fString = Replace(fString, chr(32), "&nbsp;")
  13.   fString = Replace(fString, CHR(10) & CHR(10), "</p><p>")
  14.   fString = Replace(fString, CHR(10), "<br>")
  15.   htmlencode=fString
  16. End Function
  17. Sub DoDelFile(sPathFile)
  18.   On Error Resume Next
  19.   Dim oFSO
  20.   Set oFSO = Server.CreateObject("Scripting.FileSystemObject")
  21.   oFSO.DeleteFile(Server.MapPath(sPathFile))
  22.   Set oFSO = Nothing
  23. End Sub
  24. function getfilename(str)
  25. dim pos
  26. pos=instr(str,".")
  27. if str<>"" then
  28. str=mid(str,pos,len(str))
  29. end if 
  30. getfilename=str
  31. end function
  32. FUNCTION NEWS_CLASSNAME(STR)
  33. DIM RS_CLASS
  34. SET RS_CLASS=CONN.EXECUTE("SELECT NEWS_CLASS FROM HR_NEWS_CLASS WHERE ID="&STR)
  35. NEWS_CLASSNAME=RS_CLASS("NEWS_CLASS")
  36. END FUNCTION
  37. FUNCTION CLASSNAME(STR)
  38. DIM RS_CLASS
  39. SET RS_CLASS=CONN.EXECUTE("SELECT classname FROM CLASS WHERE ID="&STR)
  40. CLASSNAME=RS_CLASS("classname")
  41. END FUNCTION
  42. FUNCTION NCLASSNAME(STR)
  43. DIM RS_CLASS
  44. SET RS_CLASS=CONN.EXECUTE("SELECT nclassname FROM NCLASS WHERE ID="&STR)
  45. NCLASSNAME=RS_CLASS("nclassname")
  46. END FUNCTION
  47. function xsqx(xsqx1)
  48. dim abc1
  49. if xsqx1=0 then
  50. abc1="禁止会员"
  51. elseif xsqx1=1 then
  52. abc1="普通会员"
  53. elseif xsqx1=2 then
  54. abc1="黄金会员"
  55. elseif xsqx1=3 then
  56. abc1="钻石会员"
  57. else
  58. abc1="末注册"
  59. end if
  60. xsqx=abc1
  61. end function
  62. function spjp(xsqx1)
  63. dim abc1
  64. if xsqx1=1 then
  65. abc1="公开货品"
  66. elseif xsqx1=2 then
  67. abc1="A类货品"
  68. elseif xsqx1=3 then
  69. abc1="B类货品"
  70. end if
  71. spjp=abc1
  72. end function
  73. function address(sip)
  74. if isnumeric(left(sip,2)) then
  75. set iprs=server.createobject("adodb.recordset")
  76. if sip="127.0.0.1" then sip="192.168.0.1"
  77. str1=left(sip,instr(sip,".")-1)
  78. sip=mid(sip,instr(sip,".")+1)
  79. str2=left(sip,instr(sip,".")-1)
  80. sip=mid(sip,instr(sip,".")+1)
  81. str3=left(sip,instr(sip,".")-1)
  82. str4=mid(sip,instr(sip,".")+1)
  83. if isNumeric(str1)=0 or isNumeric(str2)=0 or isNumeric(str3)=0 or isNumeric(str4)=0 then
  84. else
  85. num=cint(str1)*256*256*256+cint(str2)*256*256+cint(str3)*256+cint(str4)-1
  86. sql="select Top 1 country,city from ip where ip1 <="&num&" and ip2 >="&num&""
  87. iprs.open sql,conn,1,1
  88. if iprs.eof and iprs.bof then 
  89. country="亚洲"
  90. city=""
  91. else
  92. country=iprs(0)
  93. city=iprs(1)
  94. end if
  95. iprs.close
  96. set iprs=nothing
  97. set cmd=nothing
  98. end if
  99. address=country&city
  100. else
  101. address="未知"
  102. end if
  103. end function
  104. %>