I want to redirect a response to another URL while it contains some POST data in it\'s HTTP header.
// Inside an ASP.NET page code behind:
Response.Redirect(
Though it is quite old thread, I thought I would share how I do it.
Let's say sending page is a.aspx and destination page is b.aspx.
Advantages: (a) b.aspx is shown in browser address bar. It enters in browser's history. Server.transfer do these. (b) It gives effect of post. Users can not see the name-value pair in querystring.