i have 2 links for switching culture. if i click one link, the program call a method with this code:
Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(ln);
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(ln);
return RedirectToAction("index");
If i look with debug the culture is correctly changed, but in the Index redirection, the cultureUI is not changed.
I'm trying locally with visual studio web server(Cassini).
thank you