I have an xml file with 20,000 items, each with many sub items
There are many nodes to each item and 20,000 items, is it possible to loop through this with asp and output in an easy to view html table?
Code:
- <Property>
- <Referencing>
- <Address Status="DP">
- <A_5LineAddress>
<apd:Line>1111</apd:Line>
<apd:Line>2222</apd:Line>
<apd:Line>3333</apd:Line>
<apd:Line>4444</apd:Line>
<apd:PostCode>5555</apd:PostCode>
<PostCode>5555</PostCode>
</A_5LineAddress>
</Address>
<DPPropertyRef Status="DP"></DPPropertyRef>
<UniqerefStatus="NU" />
<SPAdminRef Status="NU" />
<SPPropertyRef Status="NU" />
<SHSchemaRef Status="NU" />
<CouncilTaxRef Status="NU" />
<OwnerConfirmation></OwnerConfirmation>
<OwnerRef Status="DP"></OwnerRef>
<OnwardLeases Status="NA" />
<ManagerRef Status="DP"></ManagerRef>
<EstateName Status="DP"></EstateName>
<EstateRef Status="DP"></EstateRef>
<BlockOrSchemeName Status="NK" />
<BlockOrSchemeRef Status="NK" />
<ManagementAreaName Status="NA" />
<ManagementAreaRef Status="NU" />
</Referencing>
etc etc until
</Property>
There are many nodes to each item and 20,000 items, is it possible to loop through this with asp and output in an easy to view html table?