Anastassios Hadjicrystallis wrote: > Ian, > > I used reset="yes" but no luck. When I run test.cfm and view source I see > there the img tag <img href="image.cfm">. It looks like it does not run the > image.cfm page at all. It treats it as a simple HTML tag. Why it should run > image.cfm? What force it to run this page "image.cfm" in a simple HTML tag? > I didn't mention that I use CF 7 if it means something.
That is what you should see when you look at the source. It works because that is the way the HTTP standard says it should work. When you write a common image tag like this <img src="myPic.gif">. The browser sees that and it makes a request to the server for myPic.gif. When you write a version with <img src="image.cfm">. The browser see that and it makes a request to the server for image.cfm. If both of those requests result in the same response, an image. Then the browser shows that image. Put http://www.yoursite.org/image.cfm into your browser and make sure this file is not throwing any error. If the image.cfm file throws an error, there is no place for the browser to show that error, so it gets ignored. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:324258 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

