在 C# 代码隐藏中从 fckeditor 检索值
我在我的页面中的代码隐藏文件中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您正在使用 FCK 服务器控件。在这种情况下,您可以按照与任何其他服务器控件(例如文本框)相同的方式进行操作。
您要做的就是创建 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).
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.