ASP.NET Arabic Text - Period Incorrectly Appearing At Beginning Of Sentence August 29, 2022 Post a Comment I have an ASP.NET v4 form containing a textarea element with dir field set to auto: To enter سلام علیکم. correctly, enter in order, first س then ل then ا, ... and at last . : س ل ا م Space ع ل ی ک م . And it would display correctly in a textbox with dir="rtl" or dir="auto" as you see in the below sample: <html> <head><title>auto-rtl-ltr</title></head> <body> <input type="text" dir="auto" value="سلام علیکم."/> <input type="text" dir="rtl" value="سلام علیکم."/> <input type="text" dir="ltr" value="سلام علیکم."/> </body> </html>Copy Also as a test you can paste سلام علیکم. in notepad or a textbox and using left (Ctrl+Shift) and right(Ctrl+Shift) switch between ltr and rtl and see the result. Share Post a Comment for "ASP.NET Arabic Text - Period Incorrectly Appearing At Beginning Of Sentence"
Post a Comment for "ASP.NET Arabic Text - Period Incorrectly Appearing At Beginning Of Sentence"