i want to get values from xml and transfrom it via xsl. for a value of element i want to create a hyperlink. but link should contain a value from other element as querystring. how can i do that?? i tried to create a variable and add it to href. but no way, i miss something...
thanks
thanks
Code:
<a href="CSWMetaDetail.aspx?MetaID={$metaID}">
<span style="font-weight:bold;color:blue">
<xsl:value-of select="dc:title"></xsl:value-of></span></a>
<xsl:variable name="metaID" select="csw:GetRecordsResponse/csw:SearchResults/dc:identifier" ></xsl:variable>