<SCRIPT LANGUAGE="JavaScript"> 
<!--
var process_request = "正在提交您的投票请求...";
function addvote(competitorid)
{
  Ajax.call("addvote.php?competitorid="+competitorid, '', celebQueryResponse, 'GET', 'JSON');
}
function celebQueryResponse(result) {
if(result.error == 0) {
if(result.content=='ok')
{
alert('投票成功,谢谢你的参与!');
}
else
{
alert('你今天已经投过票了,请明天再来!');
}
}
location.reload();
}
//-->
</SCRIPT>
红色的是投票代码。以下是我截取的数据包:GET /supesitevote/addvote.php?competitorid=456&1289266513187187 HTTP/1.1
Accept: */*
Accept-Language: zh-cn
Referer: http://www.xiaohb.cn/supesitevote/vote_president_search.php?&name=閮鍗?region=闊跺叧
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) )
Host: www.xiaohb.cn
Connection: Keep-Alive
Cookie: READER[vote]=t1289238207; READER[vote]=t1289238207; cnzz_a2429058=0; sin2429058=; rtime=0; ltime=1289266489468; cnzz_eid=92962247-1289265841-
456是用户的ID。1289266513是unix时间戳,187187到底是什么意思?我直接使用 http://www.xiaohb.cn/supesitevote/addvote.php?competitorid=456&1289283827  进行投票都是投不了票的。我想用VB写成一个投票系统。但是都投不,不知道是不是我分析错了。大侠帮帮我。