Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Include Images in Word Download

Status
Not open for further replies.

nmath

Programmer
Dec 12, 2003
47
0
0
US
I am using
Response.ContentType = "application/msword"
to download my asp page into Word. The download process works fine but when I open the .doc file the image is missing. The images that are missing are within the html <img> tag of the .asp page. Does anyone know of a way to force the images to be imported into the document?

Thanks in advance for the help!!


 
try inputing an absolute url to the image

Code:
<img src="[URL unfurl="true"]http://yourdomain.com/images/image.jpg">[/URL]

not
Code:
<img src="images/image.jpg">
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top