Hellow,
Ive got an xmlDom object with xmlStructure in my actionscript,
and now it needs to be written to an xml file,
and I dont wanna do it with PHP because all my other server-side scripting happens with asp
Can anyone help me?
thnxs!
This is what I’ve already got
Code:
xmlData.send(“3sexy.xml”,"_blank");
He sends this in the QueryString:
[file:///C:/Inetpub/wwwroot/XML%20update%20modulle/3sexy.xml?<?xml%20version=“1.0”?><newsXML><newsItem><id>1</id><title>titel1</title><date>vandaag</date><message>bericht1</message><link%20/><pict0%20/><pict1%20/></newsItem><newsItem><id>2</id><title>titel2</title><date>morgen</date><message>beeericht</message><link%20/><pict0%20/><pict1%20/></newsItem><newsItem><id>3</id><date>vandaagupdated</date><title>titel3</title><message>bericht1updated</message></newsItem><newsItem><id>4</id><title>titel4</title><date>overmorgen</date><message>blablablabla</message><link%20/><pict0%20/><pict1%20/></newsItem></newsXML](file:///C:/Inetpub/wwwroot/XML%20update%20modulle/3sexy.xml?<?xml%20version=)>
How do I catch this data in ASP using Code:
URL=Request.QueryString()
?