Hello everyone,
I am very new to xml world (4 hrs). I am working with asp and access. I was given over 1000 files in xml format to display on the browser.
I have about 10 main xml files that look like this
<?xml version="1.0"?>
<folder>
<folder-name> XDSD </folder-name>
<category>
<category-name> food articles</category-name>
<category-items>
<item-name>Stages</item-name>
<item-description>blah blah blah</item-description>
<item-id>11944</item-id>
</category-items>
.......more
</category>
<folder>
Then I have (thousands) xml files that contains some html. These are related to the main xml files according to the item-id
<?xml version="1.0"?>
<item>
<item-id>11944</item-id>
<item-content>
<html>
<head>
<title> Holiday Pounds</title>
</head>
<body bgcolor="#FFFFFF">
<p><font face="Arial, Helvetica, sans-serif" size="2">blah blah......</font><br>
</body>
</html>
</item-content>
</item>
I am not sure what is the best way to manage this files. Every month I will get some new xml files and the same files probably with changes. We are buying content from some other comapany and they provided the inf in a xml format.
Also, I am not sure how to link these files. At this moment I am able to display the data in the browser by using xsl and the parser. That all I know. I was looking for inf on how to store the xml files in access database. However, I don't see much inf on that.
Any advice please! Help...
Thank you
I am very new to xml world (4 hrs). I am working with asp and access. I was given over 1000 files in xml format to display on the browser.
I have about 10 main xml files that look like this
<?xml version="1.0"?>
<folder>
<folder-name> XDSD </folder-name>
<category>
<category-name> food articles</category-name>
<category-items>
<item-name>Stages</item-name>
<item-description>blah blah blah</item-description>
<item-id>11944</item-id>
</category-items>
.......more
</category>
<folder>
Then I have (thousands) xml files that contains some html. These are related to the main xml files according to the item-id
<?xml version="1.0"?>
<item>
<item-id>11944</item-id>
<item-content>
<html>
<head>
<title> Holiday Pounds</title>
</head>
<body bgcolor="#FFFFFF">
<p><font face="Arial, Helvetica, sans-serif" size="2">blah blah......</font><br>
</body>
</html>
</item-content>
</item>
I am not sure what is the best way to manage this files. Every month I will get some new xml files and the same files probably with changes. We are buying content from some other comapany and they provided the inf in a xml format.
Also, I am not sure how to link these files. At this moment I am able to display the data in the browser by using xsl and the parser. That all I know. I was looking for inf on how to store the xml files in access database. However, I don't see much inf on that.
Any advice please! Help...
Thank you