Hi all!
I've changed from jsdk 1.3.1 to jsdk 1.4, and from xsl-taglib to
jstl-taglib.
My goal is to pass a parameter to a xsl-file.
I did this in the jsp-file:
<x:transform xml="${xml}" xslt="${xslt}">
<x:param name="c-cli" value="00002" />
</x:transform>
I had success with this, but I need the value to be one of the jsp's
request parameter. So I've changed the code like this:
<% String c_cli= request.getParameter("c-cli") %>
<x:transform xml="${xml}" xslt="${xslt}">
<x:param name="c-cli" value="<%=c_cli%>" />
</x:transform>
...but the xsl file receives "<%=c_cli%>" and not "00002" as I expected.
How must I write it? I thought it was right because I've seen some
previous mails about something similar.
Thanks in advance.
Mauro
--
Ing.Mauro Daniel Ardolino
Departamento de Desarrollo y Servicios
Altersoft
Billinghurst 1599 - Piso 9
C1425DTE - Capital Federal
Tel/Fax: 4821-3376 / 4822-8759
mailto: [EMAIL PROTECTED]
website: http://www.altersoft.com.ar
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>