Results 1 to 1 of 1

Thread: ASP XMLDOM Help required

  1. #1
    Join Date
    May 2009
    Location
    Spain
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Post ASP XMLDOM Help required

    I have an XML file that I need to read using ASP (XMLDOM). I need to flatten the file into a database. The node <property> denotes a new record but within each record there are images. These are listed as children as follows:

    Code:
    <property>
    <name />
    <date />
    <price />
    <images>
      <image1>name</image1>
      <image2>name</image2>
    </images>
    </property>
    I need to know how to loop through the images to retrieve the data whilst within the <property> tag. I want to populate a variable for each image. I am using ASP with VBScript. Any tips would be greatly appreciated!!
    Last edited by Snookerman; 05-05-2009 at 05:25 AM. Reason: added [code] tags

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •