I have been struggling to setup FCKEditor on my web application for 2 days now.. and till
now no results - the editor is not showing..
i'm working with visual studio 2008
I have referenced the FredCK.FCKeditorV2.dll from this applications bin directory.
added the control to tool box in order to drag it into the page,
in page load:
FCKeditor1.BasePath = "~/fckeditor/"; (I have copied the directory editor into my web application directory)
the source page looks like:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TstFCKEditor._Default" %> <%@ Register assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" tagprefix="FCKeditorV2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Sample Page</title> </head> <body> <form id="form1" runat="server"> <!---<asp:Literal ID="Literal1" runat="server"></asp:Literal>--> <FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server"> </FCKeditorV2:FCKeditor> <div> </div> <input id="Submit1" type="submit" value="Submit" runat="server" /> </form> </body> </html>
Re: Can't make editor to show in web page..
Add this to your web.config:
Re: Can't make editor to show in web page..
thanks
solved - working now
I did what U wrote and also realized I "just" didn't copy all the files needed into
my web app. directory..
so foolish..
thanks!!
Re: Can't make editor to show in web page..
We all learn that way