ADC
03-04-2004, 02:51 PM
Here's a couple of sections from the Flash help on this command:
>Usage
>my_xml.send(url, [window])
>
>Description
>Method; encodes the specified XML object into an XML
>document and sends it to the specified URL using the POST
>method.
When I put in "_blank" for the window, I get a window that comes up as the url I entered for the xml.send, a question mark, and the xml I sent, urlencoded. It's as if it's using the GET method instead of the POST method.
When I look at the HTML for the page, it has a DOCTYPE,HEAD, META of Content-Type 'text/html', and BODY tags even though I did not specify any output in the ASP on the page.
Is this the way it's supposed to work, and is this the same way it works without specifying a window in the XML.send? If so, it could explain why my ASP's not working...
>Usage
>my_xml.send(url, [window])
>
>Description
>Method; encodes the specified XML object into an XML
>document and sends it to the specified URL using the POST
>method.
When I put in "_blank" for the window, I get a window that comes up as the url I entered for the xml.send, a question mark, and the xml I sent, urlencoded. It's as if it's using the GET method instead of the POST method.
When I look at the HTML for the page, it has a DOCTYPE,HEAD, META of Content-Type 'text/html', and BODY tags even though I did not specify any output in the ASP on the page.
Is this the way it's supposed to work, and is this the same way it works without specifying a window in the XML.send? If so, it could explain why my ASP's not working...