更改 CK 编辑器文件夹

发布于 2024-12-06 11:21:25 字数 353 浏览 2 评论 0原文

我创建了一个 asp.net Web 应用程序,然后下载了 ckeditor。我提取了我的应用程序目录这个编辑器文件夹。我将 ckeditor 的 dll 添加到我的应用程序的引用中。我在我的网页上注册了。

<add tagPrefix="CKEditor" assembly="CKEditor.NET" namespace="CKEditor.NET"/>

我也可以使用 ck 编辑器。但是当我将ckeditor放入子文件夹时,我没有使用ckeditor。

根 我的默认值.aspx 我的编辑器 ckeditor 文件夹

我想像这样使用 。我怎么能这么做呢。

I created a asp.net web application and then I downloaded ckeditor. And I extracted my application directory this editor folder. And I added dll of ckeditor to reference of my application. I registered in my web page.

<add tagPrefix="CKEditor" assembly="CKEditor.NET" namespace="CKEditor.NET"/>

I can use ck editor as well. But when I put ckeditor to child folder, I didn't use ckeditor.

root
MyDefault.aspx
MyEditor
ckeditor folder

I want to use like this. How could I do that.

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

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

发布评论

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

评论(1

卸妝后依然美 2024-12-13 11:21:25

我在我的网站中使用了 ckeditor...

我将其设置为 rootforlder/js/ckeditor(folder)

我在使用 ckeditor 的页面中添加了以下标签。

<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>

我使用了如下所示的 ckeditor 控件...

 <CKEditor:CKEditorControl ID="ckService" runat="server" Height="200px" Width="400px" BasePath="~/js/ckeditor/"></CKEditor:CKEditorControl>

我希望这会对您有所帮助...请告诉我...如果您需要任何帮助。

I used ckeditor in my website...

I set it rootforlder/js/ckeditor(folder)

I add below tag in page where I used ckeditor.

<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>

I used ckeditor control like below...

 <CKEditor:CKEditorControl ID="ckService" runat="server" Height="200px" Width="400px" BasePath="~/js/ckeditor/"></CKEditor:CKEditorControl>

I hope this will help you... please, let me know.. if you want any help regarding it.

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