Hi All,
I have a page, were I want to change data.
The data wich has to be changed has to come into the field from the FCKeditor.
I tried the following:
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Create <%=(rsContent.Fields.Item("ContentTekst").Value)%>
But thats not working Then I get the error:
Syntax error
/CMS/content/ContentUpdate.asp, line 215, column 18
I Also tried:
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor = rsContent("ContentTekst")
But then there is noting on the screen.
Who, ow who can help me out?
thanks!
I have a page, were I want to change data.
The data wich has to be changed has to come into the field from the FCKeditor.
I tried the following:
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Create <%=(rsContent.Fields.Item("ContentTekst").Value)%>
But thats not working Then I get the error:
Syntax error
/CMS/content/ContentUpdate.asp, line 215, column 18
I Also tried:
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor = rsContent("ContentTekst")
But then there is noting on the screen.
Who, ow who can help me out?
thanks!

RE: getting data From MS ACCESS 2003
RE: getting data From MS ACCESS 2003
oFCKeditor.Create =rsContent.Fields.Item("ContentTekst").Value
Is 'ContentTekst' your data to be displayed in the editor?
RE: getting data From MS ACCESS 2003
oFCKeditor.Value = rsContent("ContentTekst")
RE: getting data From MS ACCESS 2003