关于限制IP统计的问题
怎样可以限制IP统计,让1个IP一天只能投一次票,应该怎么写<%
if request.ServerVariables("QUERY_STRING")<>""then
ip=request.ServerVariables("REMOTE_ADDR")
application.Lock()
application("ip")=ip&application("ip")
application.UnLock()
if instr(application("ip"),ip)<>0 then
response.Write"<script language=javascript>alert('你已经投过票了');</script>"
end if
end if
%>