<%
dim status
status=false
templang = Request.ServerVariables("Http_Accept_Language")
tempIP = Request.ServerVariables("Remote_Addr")
response.write(templang)
response.write(tempIP)
MyArray = Array("127.0.0.1","Feb","Mar","Apr","May","Jun")
for i=0 to ubound(MyArray)
if(tempIP=MyArray(i)) then
  status=true
Exit For
end if
next
if status then
 response.Write("存在11")
end if
%>

posted on 2011-09-26 20:23  万德源  阅读(190)  评论(0编辑  收藏  举报