在 C# 代码隐藏中从 fckeditor 检索值

发布于 2024-09-08 11:41:16 字数 244 浏览 5 评论 0原文

我在我的页面中的代码隐藏文件中使用 fckeditor 我想检索 fckeditor 的值 我正在做的是

FckEditor objFckEditor = new FckEditor();
string abcd = server.Htmlencode(objFckEditor.value.trim());

我也导入了 使用 FredCK.FCKeditorV2;在顶部

但它只返回空值

i am using fckeditor in my page in the code behind file i want to retrieve the value of fckeditor what i am doing is

FckEditor objFckEditor = new FckEditor();
string abcd = server.Htmlencode(objFckEditor.value.trim());

i have also imported
using FredCK.FCKeditorV2; in the top

but it is returning only null value

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

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

发布评论

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

评论(1

坚持沉默 2024-09-15 11:41:16

看来您正在使用 FCK 服务器控件。在这种情况下,您可以按照与任何其他服务器控件(例如文本框)相同的方式进行操作。

var abcd = [[nameOfEditor]].Value;

您要做的就是创建 FckEditor 类的新实例。然后在下一行(不设置任何值)您希望它设置其 value 属性。该服务器控件没有什么特别之处,它的工作方式与任何其他控件相同。

Seems like you are using the FCK server controls. In that case you do it in the same way as with any other server control (ex a textbox).

var abcd = [[nameOfEditor]].Value;

What you do is create a new instance of the FckEditor class. Then on the next line (without setting any values) you expect it to have its value property set. There is nothing special about this server control, it works in the same way as any other control.

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