Get Culture date of browser C#
Hello Friends
Here I show that how to set auto culture of date according language of native place
here c# function
Here I show that how to set auto culture of date according language of native place
here c# function
public string SetDateCullture(string Date)
{
DateTime currDate = new DateTime();
currDate = Convert.ToDateTime(Date);
string _retDate = "";
_retDate = currDate.ToString(new System.Globalization.CultureInfo(System.Globalization.CultureInfo.CurrentCulture.Name));
return _retDate;
}
No comments