Hi I'm new to these editors
can you tell me what i need to download to install this in visual studio 2008? can i add it as a control to the toolbox?
can you tell me what i need to download to install this in visual studio 2008? can i add it as a control to the toolbox?

Re: installing asp.net control
Installation
Integration
Re: installing asp.net control
Re: installing asp.net control
But for your ASP.NET site you need to:
1) Add <textarea id="editor"></textarea> to your aspx page.
2) Add script tag at the bottom of your aspx:
<script type='text/javascript'> function FCKeditor_OnComplete(editorInstance) { editor = editorInstance; }; var editor = new FCKeditor(editorId); editor.BasePath = "../Content/fckeditor/" ; editor.Height = "500px"; editor.ReplaceTextarea(); </script>3) Be happy and use editor object on your client side.
Re: installing asp.net control
Re: installing asp.net control
Re: installing asp.net control
http://docs.fckeditor.net/FCKeditor_2.x ... stallation