asp form data to xml file

admin

Administrator
Staff member
Hello,

Does anyone know the best way to collect form data from a user and output it to a xml file that gets saved on the server. Below is the format and variables I need to collect. As you can see there is one <ticker> and 3 <topic>'s
The <image> <link> <target> and <targetIsUrl> are optional fields. If anyone can point me in the write direction, I would appreciate it. Thanks


<?xml version="1.0" encoding="iso-8859-1"?>

<ticker>


<topic>
<image>image.jpg </image>
<text>This is where I wan't to put my text</text>
<link>http://www.somewhere.com</link>
<target>_self</target>
<targetIsUrl>Y</targetIsUrl>
</topic>




<topic>
<image>image.jpg </image>
<text>This is where I wan't to put my text 2</text>
<link>http://www.somewhere.com</link>
<target>_self</target>
<targetIsUrl>Y</targetIsUrl>
</topic>



<topic>
<image>image.jpg </image>
<text>This is where I wan't to put my text 3</text>
<link>http://www.somewhere.com</link>
<target>_self</target>
<targetIsUrl>Y</targetIsUrl>
</topic>

</ticker>
 
Back
Top