Monday, April 5, 2010

Change the culture settings for a Calendar

Just add this little code which will change the culture of your calender

private void Page_Load(object sender, System.EventArgs e)
{
    System.Globalization.CultureInfo culture = System.Globalization.CultureInfo.CreateSpecificCulture("ens");
    System.Threading.Thread.CurrentThread.CurrentCulture = culture; 
    System.Threading.Thread.CurrentThread.CurrentUICulture = culture;
}

No comments:

Post a Comment