2015-10-12 44 views
0

我想在ASP.NET MVC 5項目中加載可愛的編輯器。那可能嗎 ?在ASP.NET MVC 5項目中配置可愛的編輯器

根據這Cute Editor Documentation我一直遵循這一點的每一個步驟。但並沒有解釋如何爲ASP.NET MVC Web項目視圖頁面配置Cute Editior。

所以這是我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> 

還有什麼我已經錯過了

+1

不能混用剃鬚刀和WebForms的語法和compopents它是視圖呈現2種不同的技術。 –

回答