This may seem weird but I'll try to describe it.
With my asp store each item in my inventory has the same page with a query (.../itemdesc.asp?=itemcode....) alternately almost all of my images associated with each item have the same name as the item code.
We have used the zoom image meta tag in the head of the itemdesc.asp page to display the path to the thumbnail image for that item.
<%=sIc %> would be the item code..when the page is displayed the tag shows
.../Images/th_myitemcode.jpg which zoom uses
This works great for items with images (over 6000 of them), zoom pulls them from the tag just fine.
However when I don't have an image for the item (about 600 items) the asp code in the head tag will display the item (.../Images/th_myitemcode2.jpg) but I don't have an image named myitemcode2.jpg and zoom just displays no image
Can I get zoom to display a default image if it doesn't find a working one in the zoomimage tag?
With my asp store each item in my inventory has the same page with a query (.../itemdesc.asp?=itemcode....) alternately almost all of my images associated with each item have the same name as the item code.
We have used the zoom image meta tag in the head of the itemdesc.asp page to display the path to the thumbnail image for that item.
Code:
<meta name="ZOOMIMAGE" content="/mmIH/Images/th_<%=sIc %>.jpg"/>
.../Images/th_myitemcode.jpg which zoom uses
This works great for items with images (over 6000 of them), zoom pulls them from the tag just fine.
However when I don't have an image for the item (about 600 items) the asp code in the head tag will display the item (.../Images/th_myitemcode2.jpg) but I don't have an image named myitemcode2.jpg and zoom just displays no image
Can I get zoom to display a default image if it doesn't find a working one in the zoomimage tag?
Comment