1
Reply

Save Ckeditor Text to word with Images

Jithu Johncena

Jithu Johncena

Aug 24 2016 8:17 AM
329
In my application I am using Ckeditor, and i saved ckeditor text as word Document, with bellow code.<br /><br /> string Text = "&lt;html&gt;&lt;body&gt;" + CKEditor1.Text + "&lt;/body&gt;&lt;/html&gt;";<br /> string DownPath = @"c:\Files";<br /> <br /> using (System.IO.StreamWriter file = new System.IO.StreamWriter(DownPath + @"\" + "Filename" + ".Doc"))<br /> {<br /> file.Write(Text);<br /> }<br />Here the text and styles are Saved as it is,But if any images in Ckeditor text they are not comes into word document. <br />How can i save ckeditor data to word with Images?<br /><br /><br />

Answers (1)