Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

output xml as a table

Status
Not open for further replies.

tyutghf

Technical User
Apr 12, 2008
258
GB
I have an xml file with 20,000 items, each with many sub items

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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top