I have some xml being returned in sharepoint, Im using xslt to create the hyperlink like so.
<a href="{substring-before(Sign-up-Link,',')}">
Sign up for event
</a>
I also have an element <guid>1234</guid>
being returned in the xml,
an I'd like it so that the link will be with the guid appended as a querystring
e.g. http://www.foo.com/signup.aspx?guid=1234
how do i append the guid?
thanks