| Author |
Need help with xslt
|
Hima Nadi
Ranch Hand
Joined: Apr 08, 2002
Posts: 32
|
|
i have an xml page like <list id="222"> <name>aaa</name> <size>233</size> </list> i want to change this to <list> <name>aaa</name> <size>233</size> </list> using xslt any help will be appriciated. ThanQ very much in advance Hima
|
 |
Tina Desai
Ranch Hand
Joined: Mar 13, 2003
Posts: 365
|
|
try this out: <xsl:template match="list"> <list> <xsl:copy-of select="Name" /> <xsl:copy-of select="size" /> </list> </xsl:template> HTH Tina
|
Alongwith being a good coder, try to be a good professional as well!
|
 |
Hima Nadi
Ranch Hand
Joined: Apr 08, 2002
Posts: 32
|
|
ThanQ Tina, that helped in my case Hima
|
 |
 |
|
|
subject: Need help with xslt
|
|
|