I want to create this:
<a href="domain.com?=USERNAME">Login</a>
where USERNAME = in XML so the HTML output is specific to the user currently logged in. Can anyone advise?
I know I can use:
<xsl:variable name="class" select="a:Subject"/>
<p class="{$class}">English</p>
To extract a value and use it as a CSS Class but what about using it for a link?