conn.asp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <%@LANGUAGE="VBScript" CODEPAGE="65001"%>
  2. <%
  3. Session.CodePage=65001
  4. Response.Charset="utf-8"
  5. Response.Expires=-1
  6. %>
  7. <!--#include file="system/Md5.asp"-->
  8. <%
  9. Dim Conn
  10. Set Conn=Server.CreateObject("ADODB.Connection")
  11. Conn.Open "PROVIDER=SQLOLEDB;server=127.0.0.1,1435;uid=crm;pwd=Qweasdzxc;database=crm"
  12. Function Checklogin()
  13. if Session("employee_id")="" Then Response.Write "<script>top.location.href='index.php'</script>":Response.End
  14. End Function
  15. Function GetIp
  16. GetIp=Request.ServerVariables("HTTP_X_FORWARDED_FOR")
  17. IF GetIp="" Then GetIp=Request.ServerVariables("REMOTE_ADDR")
  18. IF Len(GetIp)>15 Then GetIp="UnKnow"
  19. GetIp=HTMLEncode(GetIp)
  20. End Function
  21. Function RemoveHTML(ByVal t0)
  22. IF Len(t0)=0 Or IsNull(t0) Then
  23. Removehtml=""
  24. Exit Function
  25. End IF
  26. Dim Regs,Matches,Match
  27. Set Regs=New Regexp
  28. Regs.Ignorecase=True
  29. Regs.Global=True
  30. '过滤掉JS,Iframe
  31. Regs.pattern ="<script.+?/script>"
  32. t0=Regs.Replace(t0,"")
  33. Regs.pattern ="<iframe.+?/iframe>"
  34. t0=Regs.Replace(t0,"")
  35. '再过滤其他
  36. t0=Replace(t0,"&lt;","<")
  37. t0=Replace(t0,"&gt;",">")
  38. Regs.Pattern="<.+?>"
  39. Set Matches=Regs.Execute(t0)
  40. For Each Match In Matches
  41. t0=Replace(t0,Match.value,"")
  42. Next
  43. t0=Replace(t0,"&nbsp;","")
  44. t0=Replace(t0,vbCrLf,"")
  45. 't0=Replace(t0," ","")
  46. 't0=Replace(t0," ","")
  47. t0=Replace(t0,CHR(9),"")
  48. t0=Replace(t0,CHR(13),"")
  49. t0=Replace(t0,CHR(10),"")
  50. t0=Replace(t0,CHR(22),"")
  51. Set Regs=Nothing
  52. Removehtml=t0
  53. End Function
  54. Function Txt2HTML(ByVal t0)
  55. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  56. t0=Replace(t0,"&","&amp;")
  57. t0=Replace(t0,"""","&quot;")
  58. t0=Replace(t0,"<","&lt;")
  59. t0=Replace(t0,">","&gt;")
  60. t0=Replace(t0," ","&nbsp;")
  61. Txt2HTML = t0
  62. End Function
  63. Function HTML2Txt(ByVal t0)
  64. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  65. t0=Replace(t0,"&quot;","""")
  66. t0=Replace(t0,"&lt;","<")
  67. t0=Replace(t0,"&gt;",">")
  68. t0=Replace(t0,"&nbsp;"," ")
  69. t0=Replace(t0,"&amp;","&")
  70. HTML2Txt = t0
  71. End Function
  72. Function HTMLEnCode(ByVal t0)
  73. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  74. t0=Replace(t0,CHR(38),"&#38;") '“&” 这个在第一防止重复替换下面的内容
  75. t0=Replace(t0,CHR(9),"&#9;") '“tab(水平制表符)”
  76. t0=Replace(t0,CHR(11),"&#11;") '“tab(垂直制表符) ”
  77. t0=Replace(t0,CHR(10),"&#10;") '“换行”
  78. t0=Replace(t0,CHR(13),"&#13;") '“回车”
  79. t0=Replace(t0,CHR(32),"&#32;") '“ ”
  80. t0=Replace(t0,CHR(34),"&#34;") '“"”
  81. t0=Replace(t0,CHR(37),"&#37;") '“%”
  82. t0=Replace(t0,CHR(39),"&#39;") '“'”
  83. t0=Replace(t0,CHR(40),"&#40;") '“(”
  84. t0=Replace(t0,CHR(41),"&#41;") '“)”
  85. t0=Replace(t0,CHR(60),"&#60;") '“<”
  86. t0=Replace(t0,CHR(62),"&#62;") '“>”
  87. t0=Replace(t0,CHR(91),"&#91;") '“[”
  88. t0=Replace(t0,CHR(93),"&#93;") '“]”
  89. t0=Replace(t0,CHR(94),"&#94;") '“^”
  90. t0=Replace(t0,CHR(95),"&#95;") '“_”
  91. t0=Replace(t0,CHR(123),"&#123;") '“{”
  92. t0=Replace(t0,CHR(124),"&#124;") '“|”
  93. t0=Replace(t0,CHR(125),"&#125;") '“}”
  94. HTMLEnCode=t0
  95. End Function
  96. Function HTMLUnCode(ByVal t0)
  97. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  98. t0=Replace(t0,"&#9;",CHR(9)) '“tab(水平制表符)”
  99. t0=Replace(t0,"&#11;",CHR(11)) '“tab(垂直制表符) ”
  100. t0=Replace(t0,"&#10;",CHR(10)) '“换行”
  101. t0=Replace(t0,"&#13;",CHR(13)) '“回车”
  102. t0=Replace(t0,"&#32;",CHR(32)) '“ ”
  103. t0=Replace(t0,"&#34;",CHR(34)) '“"”
  104. t0=Replace(t0,"&#37;",CHR(37)) '“%”
  105. t0=Replace(t0,"&#39;",CHR(39)) '“'”
  106. t0=Replace(t0,"&#40;",CHR(40)) '“(”
  107. t0=Replace(t0,"&#41;",CHR(41)) '“)”
  108. t0=Replace(t0,"&#60;",CHR(60)) '“<”
  109. t0=Replace(t0,"&#62;",CHR(62)) '“>”
  110. t0=Replace(t0,"&#91;",CHR(91)) '“[”
  111. t0=Replace(t0,"&#93;",CHR(93)) '“]”
  112. t0=Replace(t0,"&#94;",CHR(94)) '“^”
  113. t0=Replace(t0,"&#95;",CHR(95)) '“_”
  114. t0=Replace(t0,"&#123;",CHR(123)) '“{”
  115. t0=Replace(t0,"&#124;",CHR(124)) '“|”
  116. t0=Replace(t0,"&#125;",CHR(125)) '“}”
  117. t0=Replace(t0,"&#38;",CHR(38)) '“&”
  118. HTMLUnCode=t0
  119. End Function
  120. Function TextEncode(ByVal t0)
  121. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  122. t0=Trim(t0)
  123. t0=Replace(t0,CHR(8),"") '“回格”
  124. t0=Replace(t0,CHR(9),"") '“tab(水平制表符)”
  125. t0=Replace(t0,CHR(11),"") '“tab(垂直制表符) ”
  126. t0=Replace(t0,CHR(12),"") '“换页”
  127. t0=Replace(t0,CHR(10),"") '“换行”
  128. t0=Replace(t0,CHR(13),"") '“回车”
  129. t0=Replace(t0,CHR(38),"&#38;") '“&”
  130. t0=Replace(t0,CHR(47),"&#47;") '“/”
  131. t0=Replace(t0,CHR(32),"&#32;") '“ ”
  132. t0=Replace(t0,CHR(34),"&#34;") '“"”
  133. t0=Replace(t0,CHR(37),"&#37;") '“%”
  134. t0=Replace(t0,CHR(39),"&#39;") '“'”
  135. t0=Replace(t0,CHR(40),"&#40;") '“(”
  136. t0=Replace(t0,CHR(41),"&#41;") '“)”
  137. t0=Replace(t0,"(","&#40;") '“(”
  138. t0=Replace(t0,")","&#41;") '“)”
  139. t0=Replace(t0,CHR(60),"&#60;") '“<”
  140. t0=Replace(t0,CHR(62),"&#62;") '“>”
  141. t0=Replace(t0,CHR(91),"&#91;") '“[”
  142. t0=Replace(t0,CHR(93),"&#93;") '“]”
  143. t0=Replace(t0,CHR(94),"&#94;") '“^”
  144. t0=Replace(t0,CHR(95),"&#95;") '“_”
  145. t0=Replace(t0,CHR(123),"&#123;") '“{”
  146. t0=Replace(t0,CHR(124),"&#124;") '“|”
  147. t0=Replace(t0,CHR(125),"&#125;") '“}”
  148. TextEncode=t0
  149. End Function
  150. Function NumFormat(ByVal t0)
  151. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  152. t0=Trim(t0)
  153. t0=Replace(t0,"-","") '“-”
  154. t0=Replace(t0,"+","") '“+”
  155. t0=Replace(t0,"&#32;","") '“ ”
  156. t0=Replace(t0,"&","") '“&”
  157. t0=Replace(t0," ","") '“空格”
  158. t0=Replace(t0,CHR(34),"") '”
  159. t0=Replace(t0,"*","") '“%”
  160. t0=Replace(t0,"%","") '“%”
  161. t0=Replace(t0,"'","") '“'”
  162. t0=Replace(t0,"(","") '“(”
  163. t0=Replace(t0,")","") '“)”
  164. t0=Replace(t0,"<","") '“<”
  165. t0=Replace(t0,">","") '“>”
  166. t0=Replace(t0,"[","") '“[”
  167. t0=Replace(t0,"]","") '“]”
  168. t0=Replace(t0,"^","") '“^”
  169. t0=Replace(t0,"_","") '“_”
  170. t0=Replace(t0,"{","") '“{”
  171. t0=Replace(t0,"\","") '“\”
  172. t0=Replace(t0,"/","") '“/”
  173. t0=Replace(t0,"|","") '“|”
  174. t0=Replace(t0,"}","") '“}”
  175. t0=Replace(t0,"(","") '“|”
  176. t0=Replace(t0,")","") '“}”
  177. NumFormat=t0
  178. End Function
  179. Function TextUncode(ByVal t0)
  180. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  181. t0=Replace(t0,"&#32;",CHR(32)) '“ ”
  182. t0=Replace(t0,"&#34;",CHR(34)) '“"”
  183. t0=Replace(t0,"&#37;",CHR(37)) '“%”
  184. t0=Replace(t0,"&#39;",CHR(39)) '“'”
  185. t0=Replace(t0,"&#40;",CHR(40)) '“(”
  186. t0=Replace(t0,"&#41;",CHR(41)) '“)”
  187. t0=Replace(t0,"&#60;",CHR(60)) '“<”
  188. t0=Replace(t0,"&#62;",CHR(62)) '“>”
  189. t0=Replace(t0,"&#91;",CHR(91)) '“[”
  190. t0=Replace(t0,"&#93;",CHR(93)) '“]”
  191. t0=Replace(t0,"&#94;",CHR(94)) '“^”
  192. t0=Replace(t0,"&#95;",CHR(95)) '“_”
  193. t0=Replace(t0,"&#123;",CHR(123)) '“{”
  194. t0=Replace(t0,"&#124;",CHR(124)) '“|”
  195. t0=Replace(t0,"&#125;",CHR(125)) '“}”
  196. t0=Replace(t0,"&#47;",CHR(47)) '“/”
  197. t0=Replace(t0,"&#38;",CHR(38)) '“&”
  198. TextUncode=t0
  199. End Function
  200. Function HTMLUnCode1(ByVal t0)
  201. IF IsNull(t0) Or Len(t0)<0 Or IsArray(t0) Then Exit Function
  202. t0=Replace(t0,"&#9;",CHR(9)) '“tab(水平制表符)”
  203. t0=Replace(t0,"&#11;",CHR(11)) '“tab(垂直制表符) ”
  204. t0=Replace(t0,"&#13;&#10;","<br />") '“换行”
  205. t0=Replace(t0,"&#10;","<br />") '“换行”
  206. t0=Replace(t0,"&#13;","<br />") '“回车”
  207. t0=Replace(t0,"&#32;","&nbsp;") '“ ”
  208. t0=Replace(t0,"&#38;",CHR(38)) '“&”
  209. HTMLUnCode1=t0
  210. End Function
  211. Function FormatTime(ttime,tparam)
  212. If Not IsDate(ttime) Then Exit Function
  213. tsrt = tparam
  214. tsrt = Replace(tsrt,"yyyy",Year(ttime))
  215. tsrt = Replace(tsrt,"yy",Right(Year(ttime),2))
  216. tsrt = Replace(tsrt,"mm",Right("0"&Month(ttime),2))
  217. tsrt = Replace(tsrt,"dd",Right("0"&Day(ttime),2))
  218. tsrt = Replace(tsrt,"hh",Right("0"&Hour(ttime),2))
  219. tsrt = Replace(tsrt,"ff",Right("0"&Minute(ttime),2))
  220. tsrt = Replace(tsrt,"ss",Right("0"&Second(ttime),2))
  221. tsrt = Replace(tsrt,"m",Month(ttime))
  222. tsrt = Replace(tsrt,"d",Day(ttime))
  223. tsrt = Replace(tsrt,"h",Hour(ttime))
  224. tsrt = Replace(tsrt,"f",Minute(ttime))
  225. tsrt = Replace(tsrt,"s",Second(ttime))
  226. FormatTime = tsrt
  227. End Function
  228. Function EnMonth(m)
  229. Select case m
  230. Case "1"
  231. m="Jan"
  232. Case "2"
  233. m="Feb"
  234. Case "3"
  235. m="Mar"
  236. Case "4"
  237. m="Apr"
  238. Case "5"
  239. m="May"
  240. Case "6"
  241. m="Jun"
  242. Case "7"
  243. m="Jul"
  244. Case "8"
  245. m="Aug"
  246. Case "9"
  247. m="Sep"
  248. Case "10"
  249. m="Oct"
  250. Case "11"
  251. m="Nov"
  252. Case ELSE
  253. m="Dec"
  254. End Select
  255. EnMonth=m
  256. End Function
  257. Function StrLeft(Str, StrLen)
  258. Dim L, T, I, C
  259. If Str = "" Then
  260. StrLeft = ""
  261. Exit Function
  262. End If
  263. L = Len(Str)
  264. T = 0
  265. For i = 1 To L
  266. C = Abs(AscW(Mid(Str, i, 1)))
  267. If C>255 Then
  268. T = T + 2
  269. Else
  270. T = T + 1
  271. End If
  272. If T> StrLen Then
  273. StrLeft = Left(Str, i) & ".."
  274. Exit For
  275. Else
  276. StrLeft = Str
  277. End If
  278. Next
  279. End Function
  280. Function StrLen(Str)
  281. If Str = "" Or IsNull(Str) Then
  282. StrLen = 0
  283. Exit Function
  284. Else
  285. Dim regex
  286. Set regex = New regexp
  287. regEx.Pattern = "[^\x00-\xff]"
  288. regex.Global = True
  289. Str = regEx.Replace(Str, "^^")
  290. Set regex = Nothing
  291. StrLen = Len(Str)
  292. End If
  293. End Function
  294. Function IsValidEmail(email)
  295. dim names, name, i, c
  296. 'Check for valid syntax in an email address.
  297. IsValidEmail = true
  298. names = Split(email, "@")
  299. If UBound(names) <> 1 then
  300. IsValidEmail = false
  301. exit Function
  302. end If
  303. for each name in names
  304. If Len(name) <= 0 then
  305. IsValidEmail = false
  306. exit Function
  307. end If
  308. for i = 1 to Len(name)
  309. c = Lcase(Mid(name, i, 1))
  310. If InStr("abcdefghijklmnopqrstuvwxyz_-.", c) <= 0 and not IsNumeric(c) then
  311. IsValidEmail = false
  312. exit Function
  313. end If
  314. next
  315. If Left(name, 1) = "." or Right(name, 1) = "." then
  316. IsValidEmail = false
  317. exit Function
  318. end If
  319. next
  320. If InStr(names(1), ".") <= 0 then
  321. IsValidEmail = false
  322. exit Function
  323. end If
  324. i = Len(names(1)) - InStrRev(names(1), ".")
  325. If i <> 2 and i <> 3 then
  326. IsValidEmail = false
  327. exit Function
  328. end If
  329. If InStr(email, "..") > 0 then
  330. IsValidEmail = false
  331. end If
  332. end Function
  333. 't0 内容,t1将什么,t2,替换成什么,t3替换的次数
  334. function sitelink_replace(byval t0,byval t1,byval t2,byval t3)
  335. If t0="" Or IsNull(t0) Then Exit Function
  336. dim t4:t4=t0
  337. reg.pattern="(\<a[^<>]+\>.+?\<\/a\>)|(\<img[^<>]+\>)|(\<h[1-6]+[\s]*\>.+?\<\/h[1-6]+\>)"
  338. set matches=reg.execute(t4)
  339. dim i:i=0
  340. dim myarray()
  341. if matches.count>0 then
  342. for each match in matches
  343. redim preserve myarray(i)
  344. myarray(i)=mid(match.value,1,len(match.value))
  345. t4=replace(t4,match.value,"["&i&"]",1,t3)
  346. i=i+1
  347. next
  348. end if
  349. if i=0 Then
  350. t0=replace(t0,t1,t2,1,t3)
  351. sitelink_replace=t0
  352. 'Set reg=Nothing
  353. exit function
  354. end if
  355. t4=replace(t4,t1,t2,1,t3)
  356. for i=0 to ubound(myarray)
  357. t4=replace(t4,"["&i&"]",myarray(i),1,t3)
  358. next
  359. sitelink_replace=t4
  360. end function
  361. %>