编程语言
首页 > 编程语言> > 如何在ASP.NET MVC 应用程序中使用CKEditor

如何在ASP.NET MVC 应用程序中使用CKEditor

作者:互联网

工具(&T) - NuGet包管理器(&N) - 管理解决方案的NuGet程序包(&N),在搜索框中输入 CKEditor,安装。

在App_Start\BundleConfig.cs中加入ckeditor.js:

bundles.Add(new ScriptBundle("~/bundles/ckeditor").Include(

                        "~/Scripts/CKEditor/ckeditor.js"));

@Scripts.Render("~/bundles/ckeditor")

<!--每个视图文件中包含一个@Model-->

<script type="text/javascript">

    CKEDITOR.replace('@Model');

</script>

在对应的文本编辑框后加入:

@Html.Partial("CKEditor", @Html.NameFor(m => m.Content))

将动作的[ValidateAntiForgeryToken]修改为[ValidateInput(false)]

标签:ASP,CKEditor,bundles,视图,Html,MVC,Scripts,ckeditor
来源: https://www.cnblogs.com/mercator/p/12356498.html