I'm trying to set the culture and culture ui in the Page_Load of a .aspx.cs page. I have tried
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("fr-CA");
and
CultureInfo ci = new CultureInfo("fr-CA");
Thread.CurrentThread.CurrentCulture = ci;
Thread.CurrentThread.CurrentUICulture = ci;
and
Culture = "fr-CA";
UICulture = "fr-CA";
but none of them work. Does anyone know how to set the culture and uiculture?
Thank you!