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