|
||||
|
% Dim sBlockedIP sBlockedIP = Request.ServerVariables("REMOTE_ADDR") 'check if the IP is the one that is blocked If sBlockedIP = "110.77.***.***" Then 'if IP address is banned then redirect to no_access.asp Response.Redirect "no_access.asp" End If %>