Unable to load image
I have a simple xml file and am using XSLT to format it. i have the following when condition, and depending upon my check i need to load a different image from my images folder.
<xsl:when test="Org = 'Business'">
<img src="../../images/business.gif" />
</xsl:when>
my folder structure for the XSLT is webcontent\xslt\ and for images webcontent\images\
but i am unable to load the image. can somebody please point me in the right direction.
Thanks.
|