AjaxControlToolkit 中的 HtmlEditor

发布于 2024-08-16 04:55:05 字数 166 浏览 5 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

音盲 2024-08-23 04:55:05

此 javascript 将获取编辑器的内容:

function getEditorText() {
    var editor = $find('myHTMLEditor');

    return editor.get_content();
}

This javascript will get the contents of the editor:

function getEditorText() {
    var editor = $find('myHTMLEditor');

    return editor.get_content();
}
寂寞清仓 2024-08-23 04:55:05

您可以执行以下操作,添加一个 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

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