CultureInfo Question
-
I am trying to develop ASP.net page that support multiple locales. I can't predict which locale resources will be used in pages that derived from this page. I only know at runtime what is the culture to be used at that moment. In this case i have to automatically organize the layout of the page. As you know, some languages - like arabic, hebrew and farsi are written from right to left (there are even some eastern languages that traditionally written form top to bottom and right to left). However, is anyone know some simple method to determine the text orientation of CultureInfo object?
CultureInfo myCulture = new CultureInfo(someculture);
and what now? How can i determine the text orientation of that culture's language? -
I am trying to develop ASP.net page that support multiple locales. I can't predict which locale resources will be used in pages that derived from this page. I only know at runtime what is the culture to be used at that moment. In this case i have to automatically organize the layout of the page. As you know, some languages - like arabic, hebrew and farsi are written from right to left (there are even some eastern languages that traditionally written form top to bottom and right to left). However, is anyone know some simple method to determine the text orientation of CultureInfo object?
CultureInfo myCulture = new CultureInfo(someculture);
and what now? How can i determine the text orientation of that culture's language? -
e-laj wrote:
How can i determine the text orientation of that culture's language?
I think you have to manage this info on your own.