RE: [xsl] Changing the value of nodes

Subject: RE: [xsl] Changing the value of nodes
From: "Java XML" <jaxlive@xxxxxxxxxxx>
Date: Thu, 19 Apr 2001 11:02:16 -0400
But i want to pass Monday not in hard coding but form an external source like a jsp form.


From: "Michael Kay" <mhkay@xxxxxxxxxxxx> Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx> Subject: RE: [xsl] Changing the value of nodes Date: Thu, 19 Apr 2001 15:43:07 +0100

> <person>
> <firstName>Jax</firstName>
> <lastName>Live</lastName>
> <payWeekDay>Wednesday</payWeekDay>
> <person>
>
> and if in the above file i want to change the value of
> <payWeekDay> from
> "wednesday" to "Monday" what is the best way to do it.

<xsl:template match="payWeekDay">
<payWeekDay>Monday</payWeekDay>
</xsl:template>

Mike Kay
Software AG

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


_________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com


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



Current Thread