Link to home
Start Free TrialLog in
Avatar of thane001
thane001

asked on

Combine 2 XML files using XMLDOM

Hello All,

I would like to combine two XML files using XMLDOM.  After I have loaded each XML file into XMLDOM, what lines of code would I use to integrate both of them before nay XSL transformation?

I am assuming that I will create a new XML file in memory (with a unique root element) and then copy each xml file under that root element....?

I prefer to do this on the server side.

Thanks in advance!

Thane
ASKER CERTIFIED SOLUTION
Avatar of ramasua
ramasua
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of thane001
thane001

ASKER

Great answer! From there I can transform the data in memory using XSL and get my styled output.

Thanks!

Thane