Hi guys, I could use a little help with an XPath-Expression. check the code below; how do I select the attribute "idc" at the shown point?
<!-- XML-Code -->
<pictGaleList>
<item>
</item>
<dateItem>
<ImageDate idc="20">
20/04/2010
</ImageDate>
</dateItem>
</pictGaleList>
<!-- XSLT -->
<xsl:template match="pictGaleList">
<xsl:value-of select="" /> <!-- here I need the value of the attribute "idc" -->
</xsl:template>