[Home] [By Thread] [By Date] [Recent Entries]
charlieo0@xxxxxxxxxxx wrote:
I need help finding a method for getting the name of an element based on the corresponding ID and IDREF attributes. I cannot use the id() function because the project I'm working is converting well-formed XML to DTD compliant XML. The id() function doesn't work because there is no DTD that defines ANY attribute types. So basically assume the ID attribute is defined as CDATA and not ID. Define <xsl:key name="el-by-id" match="*" use="@id"/> (you might want to change the match attribute to a pattern listing those elements you are interested in, instead of matching on any elements with "*"). Then use <xsl:template match="xref"> <xsl:value-of select="key('el-by-id', @taskid)/title"/> </xsl:template> -- Martin Honnen --- MVP Data Platform Development http://msmvps.com/blogs/martin_honnen/
|

Cart



