Click here to Skip to main content
Licence 
First Posted 27 Aug 2006
Views 27,246
Bookmarked 22 times

Finding Countries and Cities Using IP Address

By | 27 Aug 2006 | Article
A simple article on finding the names of countries and cities using IP address, using www.showmyip.com (Note: free for only 199 request/day).

Introduction

This article describes how to find the names of countries and cities using the IP address.

Using the code

The code is given below with explanations:

//this line is to check the clien ip address from the server itself
string IP = Request.ServerVariables["REMOTE_ADDR"];

//Initializing a new xml document object to begin reading the xml file returned
XmlDocument doc = new XmlDocument();

//NOTE: www.showmyip.com only allows 199 request/day 
//as a free call, for more requests u could register with them
/////////////////

//send the request to www.showmyip.com sending the ip as a query string
//and loads the xml file in the document object
doc.Load("http://www.showmyip.com/xml/?ip=" + IP);

//begin finding the country by tag name
XmlNodeList nodeLstCountry = doc.GetElementsByTagName("lookup_country");

////begin finding the city by tag name
XmlNodeList nodeLstCity = doc.GetElementsByTagName("lookup_city2");

//concatinating the result for show, u could also use it
//to save in data base
IP = "Country :" + nodeLstCountry[0].InnerText + 
     " --  City :" + nodeLstCity[0].InnerText + "" + IP;
Response.Write(IP);

//this is my header that I love
Page.Header.Title = "I am muslim before anything";

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

realhossam

Web Developer

Egypt Egypt

Member

Asp.net Developer since 2004.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberPrashant10019870:34 15 Oct '10  
GeneralDoesn't return city any more PinmemberSpringsteenFan2:13 11 Feb '09  
GeneralRe: Doesn't return city any more Pinmemberrealhossam7:12 11 Feb '09  
GeneralRe: Doesn't return city any more Pinmemberniku200922:32 13 Jan '12  
QuestionRetrieved IP is wrong PinmemberLilupa21:54 22 Sep '07  
AnswerRe: Retrieved IP is wrong Pinmemberrealhossam4:29 25 Sep '07  
GeneralExcellent PinmemberLilupa21:24 22 Sep '07  
GeneralInteresting... PinmemberxCuenta10:01 9 Apr '07  
GeneralRe: Interesting... Pinmemberrealhossam10:09 10 Apr '07  
GeneralCool ! PinmemberMohammed Badran14:37 3 Sep '06  
GeneralRe: Cool ! Pinmemberrealhossam20:27 3 Sep '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 28 Aug 2006
Article Copyright 2006 by realhossam
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid