Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Transfer .asp page to MS word include images within <IMG> tag

Reply
Thread Tools

Transfer .asp page to MS word include images within <IMG> tag

 
 
btfbg
Guest
Posts: n/a
 
      03-08-2005
I am using
Response.ContentType = "application/msword"
Response.AddHeader "Content-Disposition",
"attachment;filename=Letter.doc"
to download my asp page to the client. The download process works
great but when I open the .doc file it is missing the image included
within the html <img> tag of the .asp page.
How do I get the image to come down with the text?
If someone could help me out it would be greatly appreciated.
here is the image tag <IMG src="LargeLogo.jpeg" align=left>

 
Reply With Quote
 
 
 
 
Adrienne
Guest
Posts: n/a
 
      03-08-2005
Gazing into my crystal ball I observed "btfbg"
<> writing in news:1110315787.787770.86350
@z14g2000cwz.googlegroups.com:

> I am using
> Response.ContentType = "application/msword"
> Response.AddHeader "Content-Disposition",
> "attachment;filename=Letter.doc"
> to download my asp page to the client. The download process works
> great but when I open the .doc file it is missing the image included
> within the html <img> tag of the .asp page.
> How do I get the image to come down with the text?
> If someone could help me out it would be greatly appreciated.
> here is the image tag <IMG src="LargeLogo.jpeg" align=left>
>
>


Is the image embedded in the Word doc, or is the image only in the ASP
page?

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
 
Reply With Quote
 
 
 
 
btfbg
Guest
Posts: n/a
 
      03-09-2005
The image is within the ASP page. The word document is not created
until the
Response.ContentType = "application/msword"
Response.AddHeader "Content-Disposition",
"attachment;filename=Letter.do*c"
is called.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
render a .tag from within a .java tag? cliff.helsel@kadooinc.com Java 0 07-23-2008 03:01 PM
/* #include <someyhing.h> */ => include it or do not include it?That is the question .... Andreas Bogenberger C Programming 3 02-22-2008 10:53 AM
How do I include a server tag within a javascript parameter which is itself within a HTML element event? mark4asp ASP .Net 2 11-07-2006 06:23 AM
how do u invoke Tag b's Tag Handler from within Tag a's tag Handler? shruds Java 1 01-27-2006 03:00 AM
Transfer .asp page to MS word include images within <IMG> tag btfbg ASP General 0 03-15-2005 01:45 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57