在 ASP.NET 标签和文本框中从右到左书写句子

发布于 2024-12-12 13:38:55 字数 347 浏览 4 评论 0原文

如何在 ASP.NET 标签或文本框中正确显示英语和非英语(波斯语、波斯语、中东语言)单词?当我仅输入或显示英语或非英语(波斯语)单词时,这是可以的,但是当我输入或显示包含这两个单词的句子时,一切都会变得混乱,我的句子放错位置,标点符号插入错误,换句话说,很难理解所写的内容。 当我要使用 Office Word 编写波斯语文档(可能包含英文单词)时,首先我将段落方向设置为从右到左,是否可以在 ASP.NET 中执行类似的操作?当然,我在 ASPX 文件中设置了以下样式,现在我的文本框开始从右向左书写,但它对解决上述问题没有任何作用!

Style="text-align: right"

我该如何解决它?谢谢

how can I CORRECTLY display English and non-English (Persian, Farsi language, middle eastern) words in ASP.NET labels or text boxes? it is OK when I type or display only English or only non-English (Farsi) words, but when I type or display a sentence which contains both of them, everything gets out of order, my sentences are misplaced, punctuation symbols are wrongly inserted, in another word it is difficult to understand what is written.
When I'm going to use Office Word for writing Persian documents (which may contain English words), first I set paragraph direction as Right-To-Left, is it possible to do something similar in ASP.NET? of course I set following style in my ASPX files and now my texts boxes start writing from right to left but it does nothing for solving the aforementioned problem!

Style="text-align: right"

how can I solve it? thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往昔成烟 2024-12-19 13:38:55

您需要为 dir 属性- 在本例中为 rtl

dir="rtl"

这需要在包含元素中完成。

您还可以设置 CSS 属性,如中所述文档(感谢@ANeves)。

You need to use the correct value for the dir attribute - in this case, rtl:

dir="rtl"

This needs to be done in the containing element.

There are also CSS properties you can set, as discussed in this document (thanks @ANeves).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文