I am working on a web project, which may be in several langauges, I have done all this, I still have one thing.
pages when shown in English, from left to right.
some languages ββon my site should be from right to left
Please note that my question is about the whole page, not the text in the fields.
How can i do this?
I use this code to run threads for many languages.
Thread.CurrentThread.CurrentCulture = new CultureInfo(CultureName); Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;
I do not know what I think the previous code may be useful to achieve my goal.
source share