Click.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:2k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
  2. <% Option Explicit %>
  3. <!--#include file="FS_Inc/Const.asp" -->
  4. <!--#include file="FS_InterFace/MF_Function.asp" -->
  5. <!--#include file="FS_Inc/Function.asp" -->
  6. <%session.CodePage="936"%>
  7. <%
  8. response.Charset="gb2312"
  9. ''前台页面,由JS调用得到 调用该文件必须给定一些参数.
  10. Dim Conn
  11. MF_Default_Conn
  12. Dim stype,SubSys,spanid
  13. Dim Server_Name,Server_V1,Server_V2,Cookie_Domain,TmpArr
  14. Cookie_Domain = Get_MF_Domain()
  15. if Cookie_Domain="" then      
  16. Cookie_Domain = "localhost"
  17. else
  18. if left(lcase(Cookie_Domain),len("http://"))="http://" then Cookie_Domain = mid(Cookie_Domain,len("http://")+1)
  19. if right(Cookie_Domain,1)="/" then Cookie_Domain = mid(Cookie_Domain,1,len(Cookie_Domain) - 1)
  20. end if
  21. ''防盗连
  22. Server_Name = Len(Request.ServerVariables("SERVER_NAME"))
  23. Server_V1 = Left(Replace(Cstr(Request.ServerVariables("HTTP_REFERER")),"http://",""),Server_Name)
  24. Server_V2 = Left(Cstr(Request.ServerVariables("SERVER_NAME")),Server_Name)
  25. if Server_V1 <> Server_V2 and Server_V1 <> "" and Server_V2 <> "" then
  26. call HTMLEnd("没有权限,请访问"&Cookie_Domain,"http://"&Cookie_Domain)
  27. end if
  28. stype = request.QueryString("type") 'ajax
  29. SubSys = request.QueryString("SubSys") 'SubSys
  30. spanid = request.QueryString("spanid") ''NS_id_click_ECB1FJ2E8K82DK9
  31. if stype="" then stype="ajax"
  32. if stype<>"ajax" then call HTMLEnd("Error:type not is ajax!","http://"&Cookie_Domain)
  33. if SubSys="" then call HTMLEnd("Error:SubSys is null!","http://"&Cookie_Domain)
  34. if spanid="" then call HTMLEnd("Error:spanid is null!","http://"&Cookie_Domain)
  35. TmpArr = split(spanid,"_")
  36. if ubound(TmpArr)<>3 then call HTMLEnd("Error:spanid's _ is Err!","http://"&Cookie_Domain)
  37. Sub HTMLEnd(Info,URL)
  38. response.Write("$('"&spanid&"').innerHTML='';"&vbNewLine)
  39. response.End()
  40. End Sub
  41. response.Write("//Click的请求code by awen"&vbNewLine)
  42. response.Write("function f_Click_"&spanid&"() {new Ajax.Updater('"&spanid&"', 'http://"&Cookie_Domain&"/Click_Ajax.asp?no-cache='+Math.random() , {method: 'get', parameters: 'type="&stype&"&SubSys="&SubSys&"&Get="&request.QueryString("Get")&"&spanid="&spanid&"' })};"&vbNewLine)
  43. response.Write("setTimeout('f_Click_"&spanid&"()',50);"&vbNewLine)
  44. Conn.close
  45. Set Conn=Nothing
  46. %>