我想在 ASP.NET MVC 5 项目中加载可爱的编辑器。那可能吗 ?
根据这个 可爱的编辑器文档 ,我已经跟踪了其中的每一步。但它没有解释如何为 ASP.NET MVC Web 项目视图页面配置可爱的编辑器。
所以这是我的cshtml视图页面(HTML页面)
<Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor">
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h4> Edit the Brochure </h4>
<form runat="server">
<CE:Editor id="Editor1" runat="server" />
</form>
我还错过了什么