PDA

View Full Version : posting data


sandman
04-22-2003, 09:15 AM
In my laszlo app I am creating XML data that I need to post to the server. I know that I can use setQueryString() but my guess is that the amount of data that can be posted through the query string would be limited. Is this right? If so, how can I get around this issue.

antun
04-22-2003, 09:29 AM
Hey sandman

setQueryType('POST')

...should do it. It's GET by default. You still use setQueryString to set name/value pairs.

-Antun