Topic: creating XML file via ASP
Hi, firstly may i say i think tilt viewer is a fantastic application.
For my application i want to create multiple xml files from a database of pictures.
This will allow the customer to select pictures in differnet group or even randomly.
Using Server.CreateObject("Microsoft.XMLDOM") it was all going fine until i realised that the syntax of one of the xml tags is wrong, namely the tag <photo imageurl=somename.jpg linkurl=some linkhere>
The Server.CreateObject("Microsoft.XMLDOM") will not allow incorrectly formed tags so spaces in the name , = sign , quotes are all out.
Am i right in saying the tags should be <photo><imageurl> <linkurl> separately???
so the structure would be
<tiltviewergallery>
<photos>
<photo>
<imageurl>
<linkurl>
<title>
<description> & then all the closing tags
Would this be a fix that coule be made "in the next version"???
Incidentally when would this be?
Thank you