2
Answers

Export web page to word doc

Ask a question
Pankaj Pant

Pankaj Pant

15y
11.2k
1

Hi,

I want to export all the data to a word doc. All data means all textual data as well as images. Following is my code:

response.ClearHeaders();

response.AppendHeader("Content-disposition",

"attachment;filename=HelloWorld.doc");

response.ContentType = "application/msword";

wordDocument.SaveToStream(response.OutputStream);

response.End();

My problem, textual data is exported but images and css did not export. So how to export images too to .doc file.

Pankaj Pant

 

 

 


Answers (2)
Next Recommended Forum