% Dim sBlockedIP sBlockedIP = Request.ServerVariables("REMOTE_ADDR") 'check if the IP is the one that is blocked If sBlockedIP = "72.21.44.74" OR sBlockedIP = "66.232.113.206" OR sBlockedIP = "69.46.29.140" OR sBlockedIP = "201.214.157.9" OR sBlockedIP = "72.21.49.234" OR sBlockedIP = "72.21.58.74" OR sBlockedIP ="216.32.84.234" Then 'if IP address is banned then redirect to no_access.asp Response.Redirect "underconstruction.htm" End If %>