Hey,
Your idea sounds promising. It appears possible to use XML files to describe the layout of multi-page forms. For example:
(Where section id=x is used to seperate pages.)
<?xml version="1.0" encoding="ISO-8859-1"?>
<form>
<section id="1">
<question>
<type>textInput</type>
<name>organization</name>
</question>
<question>
<type>textInput</type>
<name>organization</name>
</question>
<section id="2">
<question>
<type>textInput</type>
<name>organization</name>
</question>
</form>
I searched all dam day for documentation on Microsoft.XMLDOM and the best I found was this:
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.Load(Server.MapPath("myXMLFile.xml"))
For Each objChild in objXML.documentElement.childNodes
response.Write objChild.NodeName & " - "
response.Write objChild.Text & "<br>"
Next
Everything on Microsoft's site is .NET@ I can't find the slightest bit of documentaiton on working through an XML file. This is frustrating... all I need is a manual. This is impossible to do without documentation.
Thanks for the starter tip. I'm still looking.
Rob