Link to home
Start Free TrialLog in
Avatar of doramail05
doramail05Flag for Malaysia

asked on

integrating fckeditor in asp.net

i have downloaded the latest fckeditor 2.6.6, http://ckeditor.com/download
found that there's no bin folder to include the reference.

when i downloaded 2.6.3, there is a bin, but do not have fckeditor.js and etc file to edit.
:/
Avatar of rajeeshmca
rajeeshmca
Flag of India image

hI doramail05,

I dont think we need an dll for the fck editor... There is a js file which needs to be added...

Check with the samples folder to see how it has been used...
Avatar of doramail05

ASKER

when i try to handcode in the user control for fckeditor,
it appear as :

Error Creating Control, FCKeditor1, unknown server tag 'FCKeditorV2:FCKeditor'.
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:Panel ID="Panel01" runat="server" />
    </div>
    <table style="width: 100%;">
        <tr>
            <td>
                &nbsp;
            </td>
            <td>
                &nbsp;
            </td>
            <td>
                &nbsp;
            </td>
        </tr>
        <tr>
            <td>
                &nbsp;
            </td>
            <td>
              <FCKeditorV2:FCKeditor ID="FCKeditor1" Width="800" Height="450" runat="server">
			</FCKeditorV2:FCKeditor>
            </td>
            <td>
                &nbsp;
            </td>
        </tr>
        <tr>
            <td>
                &nbsp;
            </td>
            <td>
                &nbsp;
            </td>
            <td>
                &nbsp;
            </td>
        </tr>
    </table>

    </form>
</body>
</html>

Open in new window

Use "freerichtexteditor" its supports major browser



http://www.freerichtexteditor.com/index.php?inc=demo/index
changed to skinid = "datatable"

but for the least the hover effect does not present though.
opps, wrong post,

i try like the article
http://www.tamilcodes.com/document.aspx?content=Tutorials&id=41

it has bin, then follow with fckconfig.js,
and it mentioned copy fckeditors into separate folders, i copy one folder to fckeditor (without bin but with fckconfig.js) and the other one fckeditor1 folder (with bin). Finally i added user control fckeditor, drag for fckeditor1.value, and then point basepath to "~/fckeditor/".
it does not display fckeditor still
ASKER CERTIFIED SOLUTION
Avatar of doramail05
doramail05
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial