aspx thread: response redirect posting data
Hi, I would like to know how can you redirect a client to an external page posting data to the external web server. I have tried a lot of things and Icannot find the solution. C#: HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(url); objRequest.AllowAutoRedirect = true; objRequest.Method = "POST"; and other methods I have look into.. response.redirect, etc.. nothign seems to work. thank you.
|





