<%
requestIP = request.ServerVariables("REMOTE_ADDR")
IP = "49.65.242.137|121.225.255.245|114.111.30.116|58.213.235.201|112.194.91.178|112.194.90.212|60.184.183.61|42.202.22.186|182.204.187.42"
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
%>