I'm sending an image to be downloaded using cfcontent
<cfheader name="Content-disposition" value="attachment;filename=#getit.file#">
<cfcontent type="image/jpg" file="#physicalpath#\#getit.file#">
Can I have the image sent to the browser instead of a download prompt?
If the image isn't accessible directly via HTTP, you can use CF to serve it. Your CF page would have the CFCONTENT tag as you showed in your original post, then you'd use IMG tags in other pages pointing to that CF page:
<img src="myimage.cfm?id=whatever"/>
You wouldn't need the CFHEADER to specify it as an attachment, though - that's only for when you want to prompt the user to download a file without having it handled natively by the browser.
Dave Watts, CTO, Fig Leaf Software
The same technique works just as well with any type of content, pdf, word, excel, ectra.
But whether it will open in the browser or be a download depends greatly on the user, what browser they are using, what plugins they have in that browser and how they have it configured. But, of course, all of that is out of your control. The most you can do is use the code provided to suggest how the browser should handle the content.
North America
Europe, Middle East and Africa
Asia Pacific