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

