Try changing the ScriptManager.EnableScriptGlobalization property to True. It should work as long as you set the desired cutlture value.
protected void Page_Load(object sender, EventArgs e)
{
string Lang = "es-MX";
System.Threading.Thread.CurrentThread.CurrentCulture =
new System.Globalization.CultureInfo(Lang);
}
source
share