<%dim ip
ip=request.ServerVariables("REMOTE_ADDR")
if (left(ip,10)="110.8.8") or (ip="127.0.0.1") then
'允许执行
else
Response.Write"<script language=javascript>alert('你无权访问后台!\r\n赶紧滚开!');location.href='http://www.web0316.cn';</script>"
response.end
end if
%>