Save Ckeditor Text to word with Images
In my application I am using Ckeditor, and i saved ckeditor text as word Document, with bellow code.<br /><br /> string Text = "<html><body>" + CKEditor1.Text + "</body></html>";<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 />