CKEditor 4.5.3版与ASP.NET

时间:2015-09-25 07:21:48

标签: c# asp.net visual-studio webforms ckeditor

大家早上好,

我正在尝试使用Web表单将CKEditor的4.5.3版本与我的ASP.NET应用程序集成。

基本上我知道最新版本(版本4.5.3)没有附带DLL,因此它通过脚本运行(正如我所设想的)。 我一直试图以某种方式让它发挥作用,但是我被卡住了。

如果有人可以使用网络表单指出基本CKEditor实例的示例代码,我真的很感激。

CKEDITOR文档提供以下代码;

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>A Simple Page with CKEditor</title>
        <!-- Make sure the path to CKEditor is correct. -->
        <script src="../ckeditor.js"></script>
    </head>
    <body>
        <form>
            <textarea name="editor1" id="editor1" rows="10" cols="80">
                This is my textarea to be replaced with CKEditor.
            </textarea>
            <script>
                // Replace the <textarea id="editor1"> with a CKEditor
                // instance, using default configuration.
                CKEDITOR.replace( 'editor1' );
            </script>
        </form>
    </body>
</html>

然而,在我的网络表单中,上面只显示了文本区域

由于

1 个答案:

答案 0 :(得分:-1)

<script src="../ckeditor.js"></script

补丁不能那样......

如果您从nuget补丁安装它是/scripts/ckeditor/ckeditor.js

尝试<script src="~/scripts/ckeditor/ckeditor.js"></script><script src="~/ckeditor/ckeditor.js"></script>