AW: [xsl] xsl variable to jsp public variable

Subject: AW: [xsl] xsl variable to jsp public variable
From: <christof.hoeke@xxxxxxx>
Date: Fri, 24 Jun 2005 09:39:52 +0200
> how would i pass a <xsl:variable> to a jsp variable??

What exactly do you mean?
I assume you are generating JSP pages via XSL. In that case you simply
generate JSP variables and initalize them with xsl:value-of, e.g.

...
	public string name = <xsl:value-of select="name"/>;
...

That's what you thought of?


Best regards
chris

Current Thread