In my application I am using Ckeditor, and i saved ckeditor text as word Document, with bellow 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 any images in Ckeditor text they are not comes into word document.
How can i save ckeditor data to word with Images?
Loading
Tapan PatelPosted Aug 24, 2016, 8:57 AM