Thursday, May 19, 2011

How to Know Country Location of a user - asp.net C#

You can use below code snippet to get the region description of the current user.


using System.Globalization;

string name = RegionInfo.CurrentRegion.DisplayName;

For more information visit below link

No comments:

Post a Comment