Using FCKeditor in ASP.NET page

- Add appSettings section into Web.config
- Download FCKeditor (fckeditor.net), unzip it.
- Add FCKeditor into ASP.NET page, set "BasePath" property is "~/fckeditor/". For programmatic, use FCKeditorID.BasePath = "~/fckeditor/".

- If the page get error when you submit, you need to set "ValidateRequest" property to FALSE: <%@ Page ValidateRequest="false" ...%>

Comments