The first problem is multilingualism: Just create a basepage class that will be inherited from the page class, put this method in the basepage class, and inherit the basepage class on your aspx.cs page to achieve globalization.
protected override void InitializeCulture() { Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");
The second problem is RTL and LTR: there is a main div in your main page, like ..
<div runat="Server" id="divPageDirection"> </div>
you need to change direction and put it in the page load
divPageDirection.Attributes.Add("dir", "rtl");//rtl or ltr you will decide on which language is in your current session
please let me know if you have any problems ...
Muhammad akhtar
source share