I've looked all over, and I can't seem to figure out what is wrong.
When i use the editor and click 'submit' the form forwards everything to a MS Access database - works every time.
However, sometimes when I go to edit something in FCKeditor, after data has been pulled from the DB.. the updated informaiton is not submitted to the DB. It keeps the old information - as if it was cached? it's simply not sending the update. can't seem to find a pattern.
When i use the editor and click 'submit' the form forwards everything to a MS Access database - works every time.
However, sometimes when I go to edit something in FCKeditor, after data has been pulled from the DB.. the updated informaiton is not submitted to the DB. It keeps the old information - as if it was cached? it's simply not sending the update. can't seem to find a pattern.
RE: FCKEditor not forwording infor to Access
How are you placing the control? Is it directly in the page? If you are using dotnet, then is it in a web user control?
RE: FCKEditor not forwording infor to Access DB
Using ASP... sorry I'm a bit of a newbie. Not quiet sure what you mean by control.
The form (submit button) is processed by a a different page that forwards the data to the MS DB. If there's any way I can... I could forward you the files? thanks
RE: FCKEditor not forwording infor to Access DB
After content is loaded into the fckeditor from the DB, I paste new content in over the old text... it appears fine at first, but when i click 'source' it's completely blank. when i click on source again to go back to the main view, everything's gone. I can't figure this out.
Anyone?
RE: FCKEditor not forwording infor to Access DB
Seems like i'm talking to myself, but anyways
Disabled XHTML support - it was a guess, don't ask me why... and it seems to fix any formatting, blank source code, data not sent, .etc problems.
// Enable XHTML support FCKConfig.EnableXHTML = false ;
FCKConfig.EnableSourceXHTML = false ;
By disabling this will i have other problems?
RE: FCKEditor not forwording infor to Access
Sounds like the content couldn't get verified by the xhtml-functions and wasn't send at all, because an error ocurred. There's a fix for the xhtml-library used in Bugs-Area (http://sourceforge.net/tracker/index.ph ... tid=543655) - maybe, that's the problem.
)
> By disabling this will i have other problems?
depends on: Are you in need of XHTML or is HTML sufficient?
RE: FCKEditor not forwording infor to Access DB
Alot of people find problems with text boxes using any kind of validation when pasting code in...

You could try a paste (ctrl+v), then adding a space, followed by deleting it, somewhere in the document.
This would (theoretically) give FCK a chance to update and validate it.
It's only a theory, so don't take it as gospel, and no litigation suits if it doesn't work
Stu
Re: RE: FCKEditor not forwording infor to Access DB