Ok..I can see the editor and everything...so I'm happy and everything..however, I have come across one problem
I have read all the documentation on the website and have serached for the past day for a solution and I have been unable to find one. There seems to be a lot of support for the PHP, but almost non-existant support for ASP.
I understand that oFCKeditor.Value = " " is what goes inside the box, but no matter what I do..I cannot get a file to load in the text box to edit. I just want to be able to edit a .html /.asp file on a website so the administrator does not need access to the actual files to edit the text.
Dim oFCKeditor Set oFCKeditor = New FCKeditor oFCKeditor.BasePath = "fckeditor/" oFCKeditor.Value = " " oFCKeditor.Create "FCKeditor1"
I have read all the documentation on the website and have serached for the past day for a solution and I have been unable to find one. There seems to be a lot of support for the PHP, but almost non-existant support for ASP.
I understand that oFCKeditor.Value = " " is what goes inside the box, but no matter what I do..I cannot get a file to load in the text box to edit. I just want to be able to edit a .html /.asp file on a website so the administrator does not need access to the actual files to edit the text.

Re: ASP FCKeditor problem
<% Function file_get_contents(fileName) Dim objFSO,objFile,strFilePath Set objFSO = Server.CreateObject("Scripting.FileSystemObject") strFilePath = Server.MapPath(fileName) If objFSO.FileExists(strFilePath) Then Set objFile = objFSO.OpenTextFile(strFilePath, 1, False, False) Else Set objFile = objFSO.OpenTextFile(Server.MapPath("404.html"), 1,False, False) End If file_get_contents = objFile.ReadAll objFile.Close Set objFile = Nothing Set objFSO = Nothing End Function Dim oFCKeditor Dim sValue sValue = file_get_contents("blogs.html") Set oFCKeditor = New FCKeditor oFCKeditor.BasePath = "fckeditor/" oFCKeditor.Value = Replace(sValue,vbCrLf,"") oFCKeditor.Create "FCKeditor1" %>