HTMLEditor 的内容看不到

发布于 2024-08-25 04:21:16 字数 478 浏览 5 评论 0原文

我正在使用 ajaxcontroltoolkit 的编辑器控件。

<cc1:Editor ID="EditNews" runat="server" NoUnicode="true"/>

我的问题是,当我尝试通过以下方式获取编辑器的内容时​​:

Literal1.Text = EditNews.Content;

如果编辑器中有breakLine,例如“如果我

Text Text

Text



Text

在文字中写入”,我得到:

Text Text
Text
Text

Whitout breakLine。

我不知道这个问题是否取决于我没有在编辑器中设置的属性,或者我必须在代码隐藏中控制这个“
”。

感谢您的帮助

I'm using an editor control of ajaxcontroltoolkit.

<cc1:Editor ID="EditNews" runat="server" NoUnicode="true"/>

My problem is that when I try to get the content of Editor by:

Literal1.Text = EditNews.Content;

if in the editor there are breakLine for example "If I write"

Text Text

Text



Text

In Literal I get:

Text Text
Text
Text

Whitout breakLine.

I don't know if this problem depends by an attribute that I haven't set in Editor or I have to control this "
" in Code Behind.

Thanks for help

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

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

发布评论

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

评论(2

最单纯的乌龟 2024-09-01 04:21:16

相信问题就明白了。
实际上这不是问题,但是如果您使用对齐方式(居中、右或左),然后直接尝试执行断线,则它不起作用,因为在 html 中它会生成:

<p style="text-align: center; margin: 0px"></p>

如果您不使用对齐方式并尝试执行breakline,然后生成html

<br/>

,这样就可以正常工作了!

现在,我的编辑器还有另一个问题,事实上,如果我尝试编写非常难的文本,我的编辑器会剪切文本!

I believe to understand the problem.
In effect is not a problem,but if you use the alignment (center,right, or left) and then directly you try to do breakline it doesn't work because in html it generate:

<p style="text-align: center; margin: 0px"></p>

If you don't use alignment and try to do breakline then it generate in html

<br/>

and so work correctly!

Now, I have another problem with my editor, in fact If I try to write very hard text, my editor cut text!

笑着哭最痛 2024-09-01 04:21:16

如果您想要所见即所得的编辑器,那么只需使用 FCK/CK 编辑器,这些确实是最好的。

If you want WYSWYG editor then just use FCK/CK Editor, those are really best ones.

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