User125460136 posted
I was writing code to change the language.
Dim lang As
String = Request("language1")
If lang IsNot
Nothing Or lang <>
"" Then
Thread.CurrentThread.CurrentUICulture =
New CultureInfo(lang)
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(lang)
End If
it work well
but how can I change the direction of the page from (right to left) to (Left to right) programaticaly?