I am doing a realestate site. The pictures are not listed in the MLS database. I am pulling up the pictures using:
<IMG HEIGHT=100 WIDTH=100 SRC="/mlspictures/VICTORIA#MLS#.jpg">
Where #MLS# is the Multiple Listing number. This works well until I run across a listing with no picture. I want to put a generic picture in place of where the picture goes. I have tried various ways using this:
<CFIF "VICTORIA#MLS#.jpg" IS "">
<IMG HEIGHT=100 WIDTH=100 SRC="/mlspictures/nopictures.gif">
This doesn't work, before or after.
Any ideas how I can get my nopicture.gif to display if there is no picture?
<IMG HEIGHT=100 WIDTH=100 SRC="/mlspictures/VICTORIA#MLS#.jpg">
Where #MLS# is the Multiple Listing number. This works well until I run across a listing with no picture. I want to put a generic picture in place of where the picture goes. I have tried various ways using this:
<CFIF "VICTORIA#MLS#.jpg" IS "">
<IMG HEIGHT=100 WIDTH=100 SRC="/mlspictures/nopictures.gif">
This doesn't work, before or after.
Any ideas how I can get my nopicture.gif to display if there is no picture?