flaviooooo
Programmer
Hi,
I'm trying to fill a Dreamweaver Template with data from an Access(XP)-database. I've exported the accesstable of my choice as an XML file. I tried importing it in the template, no such luck. Now I've created a dummy XML file, by exporting the editable regions as XML. I see that the two XMLfiles have totally different formats:
From Access:
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlns
d="urn:schemas-microsoft-com
fficedata" xmlns:xsi=" xsi:noNamespaceSchemaLocation="spelers.xsd">
<spelers>
<number>1</number>
<name>Abbruzzese</name>
</spelers>
From the template:
<?xml version="1.0"?>
<leegbio template="/Templates/leegbio.dwt">
<doctitle><![CDATA[
<TITLE>XMLtest</TITLE>
]]></doctitle>
<number><![CDATA[{1}]]></number>
<name><![CDATA[{Abbruzzese}]]></name>
</leegbio>
Is there a way to export the access XML in the format of the dreamweaver XML?
Or to import the format of the Access XML into the dreamweaver template?
there are about 100 records, with 20 fields each and it is updated every week; so changing it manually is not an option
I'm trying to fill a Dreamweaver Template with data from an Access(XP)-database. I've exported the accesstable of my choice as an XML file. I tried importing it in the template, no such luck. Now I've created a dummy XML file, by exporting the editable regions as XML. I see that the two XMLfiles have totally different formats:
From Access:
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlns
<spelers>
<number>1</number>
<name>Abbruzzese</name>
</spelers>
From the template:
<?xml version="1.0"?>
<leegbio template="/Templates/leegbio.dwt">
<doctitle><![CDATA[
<TITLE>XMLtest</TITLE>
]]></doctitle>
<number><![CDATA[{1}]]></number>
<name><![CDATA[{Abbruzzese}]]></name>
</leegbio>
Is there a way to export the access XML in the format of the dreamweaver XML?
Or to import the format of the Access XML into the dreamweaver template?
there are about 100 records, with 20 fields each and it is updated every week; so changing it manually is not an option