G
Guest
I have developed a web application, and I want to export a specific page to a
Word document. I have used
Response.ContentType = "application/msword";
Response.AddHeader("content-disposition", "inline; filename=myfile.doc");
and it seems to be working just fine. However the problem is that the page
also contains images, that are exported as references to the actual location
of the files on the server, and are not embedded in the document. Therefore,
if I open the document on another computer that does not have network access
the images are not there!
How can I export the page to a word document with the images embedded in the
..doc file?
Thanks in advance
Word document. I have used
Response.ContentType = "application/msword";
Response.AddHeader("content-disposition", "inline; filename=myfile.doc");
and it seems to be working just fine. However the problem is that the page
also contains images, that are exported as references to the actual location
of the files on the server, and are not embedded in the document. Therefore,
if I open the document on another computer that does not have network access
the images are not there!
How can I export the page to a word document with the images embedded in the
..doc file?
Thanks in advance