我想將響應重定向到另一個URL,同時它包含HTTP頭中的一些POST數據。Response.Redirect將數據POST到ASP.NET中的另一個URL
// Inside an ASP.NET page code behind:
Response.Redirect("http://www.example.com/?data=sent%20via%20GET");
// This will sent data to http://www.example.com via GET.
// I want to POST this data to http://www.example.com instead.
如何在ASP.NET中做到這一點?
可能重複[Response.Redirect與POST而不是獲取?](http://stackoverflow.com/questions/46582/response-redirect-with-post-instead-of-get) – tghw 2012-12-18 01:46:31