I am trying to create a comma seperated string which i am saving in a cookie. The values are simply nodeid's requested via querystring.
So i have a string/cookie with the value of "1111" how do i add the value ",1112" and so on to this string/cookie via xslt? I have tried playing around with string-join, but i cant get it to work.
Combining 2 strings ?
I am trying to create a comma seperated string which i am saving in a cookie. The values are simply nodeid's requested via querystring.
So i have a string/cookie with the value of "1111" how do i add the value ",1112" and so on to this string/cookie via xslt? I have tried playing around with string-join, but i cant get it to work.
Any ideas? :)
Try concat(string1, string2)
/SoerenS
is working on a reply...