AjaxControlToolkit 中的 HtmlEditor
我正在使用 AjaxControlToolkit 中的 HtmlEditor。
如何将在编辑器中输入的文本放入 div 中。我想显示输入的任何内容作为预览消息。我不想使用 HtmlEditor 附带的预览。
我正在使用普通的 html 按钮再次进行预览。
有人可以帮忙吗
I am using HtmlEditor from AjaxControlToolkit.
how can I get the text that I type in the editor into a div. I want to show whatever is typed as a preview message. I do not want to use the preview that comes with the HtmlEditor.
I am using a normal html button to do preview again.
Can someone please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此 javascript 将获取编辑器的内容:
This javascript will get the contents of the editor:
您可以执行以下操作,添加一个 div 并在其中添加以下内容
,然后添加一个带有 id 的 a 标记,以及 runat=server
,之后您可以使用以下代码
字符串内容 插入 htmleditor 中的文本= HtmlEditorExtender1.Content;
textResult.InnerText = 内容
我希望这对您有帮助
You can do the following, add a div and inside of it add the following
and then add an a tag with an id, and the runat=server
and after that you can insert the text that is in the htmleditor using the following code
string content = HtmlEditorExtender1.Content;
textResult.InnerText = content
I hope this help you