如何将 FCKEditor 设置为只读?

发布于 2024-08-17 22:26:53 字数 120 浏览 11 评论 0原文

我在我的 WebForms 应用程序中使用 FCKEditor ASP.NET 控件 2.65。如何将其设置为只读(最好从服务器端)?

我没有看到启用或只读属性。

我错过了一些非常简单的事情吗?

I am using FCKEditor ASP.NET control 2.65 in my WebForms application. How can I set it to be readonly (preferably from the serverside)?

I am not seeing either Enabled or Readonly properties.

Am I missing something really simple?

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

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

发布评论

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

评论(2

祁梦 2024-08-24 22:26:54

这里是我认为您问题的答案

Here is I think the answer for your problem

与之呼应 2024-08-24 22:26:53
  1. 将控件包装在您自己的控件中。
  2. 在您的控件上发布 Enabled 属性。
  3. 发布 Value 属性。您自己管理这两个属性的状态。
  4. 如果渲染时 Enabled = true,则委托给底层 FCKEditor 控件。
  5. 否则,获取该值并简单地渲染它。
  1. Wrap the control in your own control.
  2. Publish an Enabled property on your control.
  3. Publish a Value property. Manage the state for both of these properties yourself.
  4. If Enabled = true at the time of render, then delegate to the underlying FCKEditor control.
  5. Otherwise, take the Value and simply render it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文