Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blocking webpages based on the IP 2

Status
Not open for further replies.

sbayter

IS-IT--Management
Nov 14, 2002
95
CO
Hi,
I have a site in which I want to unable users from certain countries to access my site... or maybe re-direct them to another page.
Is there any way to identify based on IP what country the user is comming from?
and then you something like:

If IP = IPrange
then
Request.Redirect "quit.asp"
Else
Request.Redirect "requestepage.asp"

Thanks in advance,


sbayter
 
Well.. its rather complicated.. You would have to get information from ARIN/APNIC/LATNIC/RIPE to determine what country an IP address belongs to.. but if you go to my website.. I do have a tool I've created for just this purpose:


Hope this helps..

Cheers,

G.






GT Interactive
-----------------------------
Components/Tools/Forums/Software/Web Services
 
This is give you the ip address of the visitor:
Request.ServerVariables("REMOTE_ADDR")
 
Request.ServerVariables("REMOTE_ADDR")

is taht all you're looking for. The var to get the IP

_____________________________________________________________________
You can accomplish anything in life, provided that you do not mind who gets credit.
Harry S. Truman

onpnt2.gif

 
Thanks for your help.
I do know how to get the IP address.
What I need is something to know what country is the IP comming from.
Gorkem gave me a good option but I need something free, if posible.
Thanks,


sbayter
 
[smile]

_____________________________________________________________________
You can accomplish anything in life, provided that you do not mind who gets credit.
Harry S. Truman

onpnt2.gif

 
Yes!
You really deserve it!
thanks!

sbayter
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top