The language of all sessions changes when the resource file is applied but people who speak different languages are connected.
I put a language change code on the index page that I first access to.
string[] languages = HttpContext.Current.Request.UserLanguages;
string mCulture = languages[0];
PORTAL_Character.Res.Culture =System.Globalization.CultureInfo.CreateSpecificCulture(mCulture);
Thread.CurrentThread.CurrentUICulture = new CultureInfo(mCulture);
Thread.CurrentThread.CurrentCulture = new CultureInfo(mCulture);
When a user with a different language connects, it changes the language of an existing user.
Is there a way to apply resource files per session?