Recently my application has been migrated from ColdFusion 8 to 9. I am facing an issue while displaying images in MS Word. Here is my code.
<cfheader name="Content-Disposition" value="attachment;filename=Imagetest.doc">
<cfcontent type="application/msword">
Testing Image issue<br>
<cfset logopath = "/ImageIssue/Test_logo.jpg">
<cfoutput>
<p><img width="141" height="32" src="#logopath#" /><br><br></p>
</cfoutput>
It is giving me an image not found kind of issue with cross mark. This same code was working fine in ColdFusion 8. Does anyone have any suggestions?