Instead of dynamically returning a page of HTML to the browser,
what we want to do is dynamically return image data to the browser.
We'll create a page for this and call it view.asp.
Rather than hardwire the image in the code we'll include the
name of the image in the URL. In this way you can write code which
references different images. For example you might use the
following HTML to display the preview of the boat.
<img src='view.asp?name=boat'>
|