Hey guys just wanted to jump back in on this one.
There is no real "nice" way to do this unless you want to go digging into the core and changing how ASPDNSF handles images.
This is the method we like to use. We use this method on the product pages for e-tradecounter.co.uk.
We create a new .cs page inside the App_Code and do all the heavy lifting in there. In regards to just hard coding the images the standard ASPDNSF does not take more than 10 multi images. This means we can easily create a for loop inside the .cs file.
C#/VB.NET Code:
for (int i = 1; i < 11; i++)
{
if (CommonLogic.FileExists("~/images/product/large/" + ProductID.ToString() + "_" + i.ToString() + "_.jpg"))
{
tmpS.Append("<a href=\"images/product/large/" + ProductID.ToString() + "_" + i.ToString() + "_.jpg\" title=\"" + ManufacturerName + " " + SEAlt + "\">");
tmpS.Append("<img border=\"0\" alt=\"" + ManufacturerName + " " + SEAlt + "\" src=\"images/product/icon/" + ProductID.ToString() + "_" + i.ToString() + "_.jpg\" />");
tmpS.Append("</a>");
}
}
As the code is all inside the App_Code it runs quicker than inside an XML package. However every time you change the file it causes a recompile. So be sure you are happy with it before going live, otherwise your customers will end up with a painfully slow experience while you are making changes.
Because we wanted our image zoom to be highly flexible we spilt it up into three different parts. Product Images, Variants Images and Default Variant Image.
So after we have linked up our custom .cs file with our XML package we can simply call this on every product page where we want images.
HTML Code:
<xsl:choose>
<xsl:when test="aspdnsf:FileExists(concat('~/images/variant/medium/', VariantID, '.jpg')) = 'true'">
<xsl:value-of select="mz:VariantMainImage(VariantID, $pName, '', $AltText)" disable-output-escaping="yes"/>
<div id="ExtraImages">
<xsl:for-each select="/root/ProductVariants/Variant">
<xsl:value-of select="mz:VariantMultiImage(VariantID, $pName, '', $AltText)" disable-output-escaping="yes"/>
</xsl:for-each>
</div>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="mz:ProductMultiImage(ProductID, $pName, '', $AltText)" disable-output-escaping="yes"/>
</xsl:otherwise>
</xsl:choose>
This means we can easily show a single variant with 10 multi images, a single variant image or multiple variant images and even an image missing.
We originally had all the code inside the XML Packages and it was not only slow but a nightmare to maintain, plus if you made a change you would have to copy it to every XML. I strongly suggest doing any new lightbox in the App_Code (easier to upgrade, don't need source and highly flexible.)
Hope that gives you guys some new ideas.