FCKEditor on asp.net-mvc

How to add FCKEditor to MVC application?

How to show the value of a database in a model in FCKEditor?

+3
source share
2 answers

Have a look here: http://www.codeproject.com/KB/aspnet/fckeditor.aspx , this seems to be a great example of what you want.

+2
source

This CodeProject website is not perfect. He asks you to make a lot of unnecessary code. All you really need to do is include the correct javascript file:

Then, on the page, do FCKEditor, taking into account any number of different ways. I prefer replacing the text area:

window.onload = function()
{
    var oFCKeditor = new FCKeditor( 'content' ) ;
    oFCKeditor.ReplaceTextarea() ;
}

. , , fckeditor, , . , , . FCKEditor , , , .

api . fckeditor, GetFolders, GetFoldersAndFiles GetFiles. .

, / fckeditor MVC, ASP.NET.

+15

Source: https://habr.com/ru/post/1707095/


All Articles