Combine path from two parameters in XSLT

gyjiba

New Member
I have a simple question. How do you combine a path from two template parameters? I would like to do something like that: \[code\]<xsl:template match="*[namespace-uri()='show:show']"><xsl:param name="arg1"/><xsl:param name="arg2"/><tr> <td> <xsl:value-of select="concat($arg1,$arg2)"/> </td></tr> \[/code\]to get path like: arg1/arg2 but it doesn't work. How can I do that properly?
or can you do sth like\[code\]<xsl:value-of select="path/path/$arg2"/> \[/code\]?
arg1 is complete path from root and arg2 is single element name.
 
Back
Top