I would just like to be able to dynamically write the contents of an xml file from another xml file.
A.XML contains:
<?xml version="1.0"?>
<node>
-Include Contents of b.xml
</node>
B.XML contains:
<anode>
a
</anode>
is there any way to do this in xml?
End product looks like this:
<?xml version="1.0"?>
<node>
<anode>
a
</anode>
</node>
Update from comments:
In xml alone. so that when i view the xml file in a browser it renders correctly