xsl-list
[Top] [All Lists]

[xsl] Add an element that contains multiple nested elements

2006-05-16 08:44:11
I use msxsl and XSL 1.0. I need to add a <container> element to a file like
this:

<rootElement>
  <element1>
    <elementA>A</elementA>
  </element1>
...
  <element2>
    <elementB>B</elementB>
  </element1>
</rootElement>
 
This is the result I need to achieve:
 
<rootElement>
 <container>
  <element1>
    <elementA>A</elementA>
  </element1>
...
  <element2>
    <elementB>B</elementB>
  </element1>
 </container>
</rootElement>

and this is what I get with all the various attempts I made:

<rootElement>
 <container>
  <element1>
    <elementA>A</elementA>
  </element1>
 </container>
...
 <container>
  <element2>
    <elementB>B</elementB>
  </element1>
 </container
</rootElement>

Any guidance on how to achieve the result I need would be greatly
appreciated. Thanks.


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>