VoteJs.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.Buffer = True
  9. Response.Expires = -1
  10. Response.ExpiresAbsolute = Now() - 1
  11. Response.Expires = 0
  12. Response.CacheControl = "no-cache"
  13. response.Charset = "gb2312"
  14. Dim Steps,TID,Cookie_Domain,OutHtmlID,PicW
  15. ''前台页面,由JS调用得到 调用该文件必须给定一些参数.
  16. TID = request.QueryString("TID")
  17. OutHtmlID = request.QueryString("InfoID")
  18. PicW = request.QueryString("PicW")
  19. if OutHtmlID = "" then OutHtmlID = "Vote_HTML_ID"
  20. if TID = "" or not isnumeric(TID) then response.Write("document.writeln('内部错误:调用时,TID必须提供.n');"&vbNewLine) : response.End()
  21. if PicW = "" or not isnumeric(PicW) then PicW = 60
  22. Dim Conn
  23. MF_Default_Conn
  24. Cookie_Domain = Get_MF_Domain()
  25. if Cookie_Domain="" then 
  26. Cookie_Domain = "localhost"
  27. else
  28. if left(lcase(Cookie_Domain),len("http://"))="http://" then Cookie_Domain = mid(Cookie_Domain,len("http://")+1)
  29. if right(Cookie_Domain,1)="/" then Cookie_Domain = mid(Cookie_Domain,1,len(Cookie_Domain) - 1)
  30. end if
  31.  
  32. response.Write("function f_FirstGetVote_"&OutHtmlID&"() {new Ajax.Updater('"&OutHtmlID&"', 'http://"&Cookie_Domain&"/Vote/Index.asp?no-cache='+Math.random() , {method: 'get', parameters: 'TID="&TID&"&InfoID="&OutHtmlID&"&PicW="&PicW&"' });} "&vbNewLine)
  33. response.Write("setTimeout('f_FirstGetVote_"&OutHtmlID&"()',200);"&vbNewLine)
  34. Conn.close
  35. Set Conn=Nothing
  36. %>