How to set UI Language
How to set UI Language
How to set UI Language which is default provided by STIWebDesigner: Dutch, English and german
How to set UI Language
Hello,
Copy the localization .xml files to the Localization folder in your project. All languages will be automatically detected in WebDesigner. To change the default localization set the following property:
Thank you.
Copy the localization .xml files to the Localization folder in your project. All languages will be automatically detected in WebDesigner. To change the default localization set the following property:
Thank you.
How to set UI Language
Thanks for soon reply.
Actually i would like to set language in C# code. I got the idea from that and do it like that.
anyway thanks again.
Actually i would like to set language in C# code. I got the idea from that and do it like that.
Code: Select all
StiLocalization.Language = Session["MyUICulture"].ToString().Remove(2);//it gives the user selected language like en, es and fr
How to set UI Language
Ok! Thank you.