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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting User Location 3

Status
Not open for further replies.

Fendal

Technical User
Sep 13, 2005
178
GB
Hello All,

Is it possible to get a users location with asp.net, so that I could display a flag of the users country in the top right of the browser depending on there location ?, If anyone could link me to the right direction or give sample code that would be great, Thanks For reading.

or classic asp vb/js
 
It's kind of hit or miss but you could attempt to sense the culture from the users browser:
Code:
{
Thread.CurrentThread.CurrentCulture=new CultureInfo(Request.UserLanguages[0]);
}
This returns the default language of the browser. But keep in mind that browser's are not required to specify a language, hence the hit or miss aspect. If you google "asp.net globalization", "asp.net cultureinfo" or "asp.net localization" you'll be in the right ballpark. It's a pretty hefty topic.
 
Thanks, Veep, I'll look into those google searches.
 
Thanks TipGiver, an enlighting link.
 
Another way (again, it's not a perfect solution and it some cases it will potentially work out an incorrect location) is to use the IP Address of the user. I was reading an article on this the other day which shows a map of where you are based on your IP Address. You could do the same thing but just display the country rather than the map:



____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top