conn.asp 13 KB

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