HTMLEditor 的内容看不到
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
相信问题就明白了。
实际上这不是问题,但是如果您使用对齐方式(居中、右或左),然后直接尝试执行断线,则它不起作用,因为在 html 中它会生成:
如果您不使用对齐方式并尝试执行breakline,然后生成html
,这样就可以正常工作了!
现在,我的编辑器还有另一个问题,事实上,如果我尝试编写非常难的文本,我的编辑器会剪切文本!
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:
If you don't use alignment and try to do breakline then it generate in html
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!
如果您想要所见即所得的编辑器,那么只需使用 FCK/CK 编辑器,这些确实是最好的。
If you want WYSWYG editor then just use FCK/CK Editor, those are really best ones.