Re: [xsl] '<' character in href

Subject: Re: [xsl] '<' character in href
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Tue, 21 Jan 2003 21:10:25 +0200
Lee, Insoo wrote:
 Hi, in my XSL, I need to have an href link and I need to pass down the
parameters that get read from XML...., but it complains " The value of
attribute "href" must not contain the '<' character."
 How would I escape that character? Thanks
Just don't use it.
<a
href="xmlReport?contentType=excel&amp;reportType=cab&amp;sort_selection=<xsl
:value-of select="SELECTED_SORT"">
Should be
<a
href="xmlReport?contentType=excel&amp;reportType=cab&amp;sort_selection={SELECTED_SORT}">

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread