You can use this I think.
var dataset:URLVariables = new URLVariables();
var request:URLRequest = newURLRequest("somepage");
request.data = dataset;
request.method = URLRequestMethod.POST
--- In [email protected], "markgoldin_2000"
<[EMAIL PROTECTED]> wrote:
>
> My server side of application uses QueryString to extract parameters
> being sent from the client to query data and send it back. To save data
> I would want to use POST but I also need to send some parameters to the
> server as well. I want to use same server logic to process parameters
> in both getting data and saving it. But if I use POST method no
> QueryString is available on the server. Any suggestions?
>
> Thanks
>