Hello. We would like the manufacturer's name to show up on our category/sub category pages. for example:
http://aspdotnetstorefront.nueratrai...-hardware.aspx
Where it says "Brand -" it should say the manu name...
I have tried the following as per this article:
http://forums.aspdotnetstorefront.co...p?t-7655.html&
Code added:
AT TOP
<query name="ProductMans" rowElementName="Man">
<sql>
<![CDATA[
SELECT ManufacturerID ManID
FROM ProductManufacturer pm
WHERE pm.ProductID = @ProductID
]]>
</sql>
<queryparam paramname="@ProductID" paramtype="request" requestparamname="ProductID" sqlDataType="int" defvalue="0" validationpattern="^\d{1,10}$" />
</query>
IN TEMPLATE
<xsl:value-of select="root/EntityHelpers/Manufacturer/Entity[EntityID=/root/ProductMans/Man/ManID]/Name" disable-output-escaping="yes"/>
It's not bombing, but nothing is showing up...
What am I missing?
Thanks