We are using CKEditor to edit online resumes and would like to convert the HTML format data to DOC format and save the blob into a database.
Currently we have this
Dim strContent as string
Dim dstDoc As New Document()
Dim builder As New DocumentBuilder(dstDoc)
strContent=ME.CKEditor1.Text
builder.Writeln(strContent)
Dim stream As New MemoryStream()
dstDoc.Save(stream, SaveFormat.Doc)
then add to database
I know that the saved data is a word doc, but treats the HTML from the CKEditor as text and just saves source code of the HTML, not a HTML data converted to a Word Doc.
Thanks,
mjc