H
hharry
Hi All,
If I have the following xml:
<Response>
<AddressDetails>
<Address>
</Address>
</AddressDetails>
</Response>
and I need to insert multiple address records like this:
<Response>
<AddressDetails>
<Address>
<City></City>
<State></State>
</Address>
<Address>
<City></City>
<State></State>
</Address>
</AddressDetails>
</Response>
I have used the xmlnode.appendchild method to do this, but I can only
add one address, the original address is replaced so i end up with only
1 address like this:
<Response>
<AddressDetails>
<Address>
<City></City>
<State></State>
</Address>
</AddressDetails>
</Response>
Thanks in advance
If I have the following xml:
<Response>
<AddressDetails>
<Address>
</Address>
</AddressDetails>
</Response>
and I need to insert multiple address records like this:
<Response>
<AddressDetails>
<Address>
<City></City>
<State></State>
</Address>
<Address>
<City></City>
<State></State>
</Address>
</AddressDetails>
</Response>
I have used the xmlnode.appendchild method to do this, but I can only
add one address, the original address is replaced so i end up with only
1 address like this:
<Response>
<AddressDetails>
<Address>
<City></City>
<State></State>
</Address>
</AddressDetails>
</Response>
Thanks in advance