0

我对 ckeditor 和 Visual Basic(使用 Visual Studio)有疑问。我有一个带有用于 ckeditor 的脚本的 .html 页面,这部分没问题,我使用 webbrowser 导航到 web,并且可以使用 DocumentCompleted 事件设置文本。

问题是相反的,例如,我不知道如何将文本从 ckeditor 获取到字符串。我知道 ckeditor 有一个名为 getdata() 的函数?但我不能从视觉工作室打电话(或者我不知道如何)。有人能帮助我吗?

4

2 回答 2

2

使用HtmlDocument.InvokeScript调用CKEDITOR.instances.yourInstanceName.getData()JavaScript。文档中有一个示例。

于 2013-08-16T11:59:33.067 回答
0

看看我的朋友:

Protected Sub btnShowText_Click(sender As Object, e As EventArgs)
  Dim text As String = CKEditor1.Text
  lblText1.Text = Server.HtmlEncode(text)
  lblText2.Text = Server.HtmlDecode(text)
End Sub

来源: http: //www.devasp.net/net/articles/display/1438.html

于 2014-07-24T23:52:51.650 回答