SIGN UP MEMBER LOGIN:    
Blog

Change Culture Setting Of Calendar Control

Posted by Ghanashyam Nayak Blogs | ASP.NET Controls in C# Apr 11, 2011
This code will show you that how you can set or changer the culture setting of your Calender control of ASP.Net.

  

System.Globalization.CultureInfo myCulture = System.Globalization.CultureInfo.CreateSpecificCulture("<<Pass Here Culture Whatever You Want");
 // For Example : For French You Can Set "fr"...
System.Threading.Thread.CurrentThread.CurrentCulture = myCulture;
System.Threading.Thread.CurrentThread.CurrentUICulture = myCulture;


share this blog :
post comment