PurpleEdge
Posts: 8
|
| Posted: 02/14/2008, 5:31 PM |
|
Hi All, obvious newby question...
I'm wishing to install fckEditor on an ASP.NET website and I'm not sure where I am meant to copy the fckEditor folder to, is it...
c:\mywebsiteroot\
c:\mywebsiteroot\CodeCharge\MyProjectName
or somewhere else?
Do I need to install the fckEditor .NET files, if so, where to?
TIA
|
 |
 |
joejac
Posts: 242
|
| Posted: 02/17/2008, 9:35 AM |
|
Hello and very welcome PurpleEdge,
I do not use .NET but php, what I personally do is
1.- I place the editor files in this directory: mysite.com/editor
1.1 I do not place FCK files in my CCS project because it make it much bigger, so I loaded directly to the web site root/editor
2.- I followed the documentation in CCS - Help -Help Topics you put FCK in the Search box.
In the HTML of the page where I have FCK I see this, after following the procedure to attach the FCKeditor:
//Attach FCKeditor @29-DC7E2B92
var articulosresumen_FCK = new FCKeditor(this.getAttribute("id"));
var securitylevel = {TextBox1};
articulosresumen_FCK.BasePath = "/editor/";
if (securitylevel <2) {articulosresumen_FCK.ToolbarSet = "Default";}
else{articulosresumen_FCK.ToolbarSet = "Basic";}
articulosresumen_FCK.Height = "350";
articulosresumen_FCK.ReplaceTextarea();
//End Attach FCKeditor
Sorry but I can not help you with the .NET question. Hope this can help you
regards
joejac
|
 |
 |
|