Hi,
I'm passing through a customers id through a form.
I have images stored of the customer named by their id in an 'images' folder.
So - Customer ID '1' has a image 'images/1.jpg'.
I can display the customers image by doing:
<img src="images/<%= CustomerID %>" width="140" height="100"></td>
where ID is:
CustomerID = request.querystring("ID") & ".jpg"
My question is - if the image doesn't exist in the images folder - can I show some text saying 'Image Required' instead of the little cross?
Any help would be great