Ask a Question related to ASP.NET General, Design and Development.
-
Shoval Tomer #1
loading xmlcontent from one xmldocument into another xmldocument
Hi,
I get xml data into one xmldocument
and other xml data into a second xmldocument.
Let's say the structure of the first is
<Table>
<Fields>
<Field>
<Name>a</Name>
<Type>int</Type>
</Field>
</Fields>
</Table>
the structure of the second one is:
<Links>
<Table>M</Table>
</Link>
<LocalField>m1</LocalField>
<Refield>a</Refield>
</Link>
</Links>
and I want to load the second xmldocument into the first like so:
<Table>
<Links>
<Table>M</Table>
</Link>
<LocalField>m1</LocalField>
<Refield>a</Refield>
</Link>
</Links>
<Fields>
<Field>
<Name>a</Name>
<Type>int</Type>
</Field>
</Fields>
</Table>
(The order doesn't really count, I don't care if the <Links> part will
come after the <Fields> part.
I can't seem to get it done in csharp (in asp.net).
I've tried using xmlDocument.ImportChild, InsertAfter, InsertBefore,
to no avail.
PPPPPPPlease help. )-:
Thanks
Shoval Tomer Guest
-
XmlDocument and cloneNode
Hello, How can one copy an XmlDocument "A" into another XmlDocument "B" When I say "copy", I mean to replace the XmlDocument "A" completely... -
XML and XMLDocument API confusion
Perhaps I'm reading this wrong or missing something but it seems there is a circular reference in the API for XML and XMLDocument. I'm starting to... -
XmlTextWriter to XmlDocument
I have a web method which takes an XmlDocument as parameter. On the client side, I create custom Xml by using XmlTextWriter. Is there an easy... -
Why is the return value not XmlDocument ?
hi gurus I have a asp.net web services and in that i have a function which returns XmlDocument as the return value, when I test the service it... -
XmlDocument
Hello, How can one copy an XmlDocument "A" into another XmlDocument "B" When I say "copy", I mean to replace the XmlDocument "A" completely...



Reply With Quote

