In my application I am using Ckeditor, and i saved ckeditor text as a word Document, with the following code.
string Text = "<html><body>" + CKEditor1.Text + "</body></html>";
string DownPath = @"c:\Files";
using (System.IO.StreamWriter file = new System.IO.StreamWriter(DownPath + @"\" + "Filename" + ".Doc"))
{
file.Write(Text);
}
Here the text and styles are saved as it is,But if there are any images in Ckeditor text, they are not displayed in the word document.
I have attached a snap of the word Image error .
Issue
How can i save ckeditor data to word with Images?