Hi all, Im using Response.ContentType = "application/msword" to generate a word document from a HTML page... that part works fine but the images that are sourced as an "Absolute link" in the HTML file do no appear!
Does anyone have any sugestions as to how I could get the images into the word document? My Code: SQL = "SELECT * FROM Rentals2 WHERE Hide='Available Now' or Hide='Let' ORDER BY RentalBedrooms,RentalPriceF,RentalPriceUF" Response.ContentType = "application/msword" Response.AddHeader "Content-Disposition", "attachment; filename=Rental_List.doc" Set ObjRS = runQuery(SQL) Do Until ObjRS.EOF...
