Hello;
I have what seems to be a complex problem. I have a productPage that has a URL Link to a detail page for close up images. The detail page has thumbnail images that link to the detail page. I can get to the detailPage (has large image) fine but there are multiple images for this one product so I want to have those thumbnail images generated under the bigger image.
The problem is that once I use the detailImageID for the multiple images I can't use the original ProdID to still generate the thumbnail of that one product.
Here is the SQL for the detail Page:
--------------------------------------------
<CFQUERY NAME="GetProductDetail" DATASOURCE="studentDB">
SELECT
DI.DetailImage,
DI.ImageThumb,
PR.ProdID,
PR.ProdName,
PR.ProdNum,
PR.SRP,
PR.BriefDesc,
PR.Features,
PR.LongDesc,
PR.SmImage,
PR.LgImage,
PR.CatId
FROM
DetailImage DI,
Product PR
WHERE
DI.DetailImageID =#URL.DetailImageID# AND
PR.ProdID = DI.ProdID
</CFQUERY>
------------------------------
Can any body help?
Thanks,
Eric
I have what seems to be a complex problem. I have a productPage that has a URL Link to a detail page for close up images. The detail page has thumbnail images that link to the detail page. I can get to the detailPage (has large image) fine but there are multiple images for this one product so I want to have those thumbnail images generated under the bigger image.
The problem is that once I use the detailImageID for the multiple images I can't use the original ProdID to still generate the thumbnail of that one product.
Here is the SQL for the detail Page:
--------------------------------------------
<CFQUERY NAME="GetProductDetail" DATASOURCE="studentDB">
SELECT
DI.DetailImage,
DI.ImageThumb,
PR.ProdID,
PR.ProdName,
PR.ProdNum,
PR.SRP,
PR.BriefDesc,
PR.Features,
PR.LongDesc,
PR.SmImage,
PR.LgImage,
PR.CatId
FROM
DetailImage DI,
Product PR
WHERE
DI.DetailImageID =#URL.DetailImageID# AND
PR.ProdID = DI.ProdID
</CFQUERY>
------------------------------
Can any body help?
Thanks,
Eric