Redirect with POST

  • Thread starter Thread starter Thom Little
  • Start date Start date
T

Thom Little

In ASP.NET 2.0 C# I need to redirect to an .ASP or .HTML page and include
POST data (i.e., formatted like a form. The form data is changed
dynamically by the C# page.

Can anyone point me to an example?
 
Thank you for the lead ...

To pass a string shouldn't you be able to ...

Response.ClearHeader( );
Response.AddHeader( "x", "a=alpha&b=beta" );
Response.Redirect( strUrl );

.... while you specify the correct header ("x") for any form without worrying
about the name?
 
I find your information very helpful and I appreciate you taking the time to
share it with me.

I tried to find the article on your Blog and could not find it. Can you
point me in the right direction?

Thanks.
 
Unfortunately Server.Transfer( ) is restricted to transfer between webspcaes
on the same server.

In my case some of the web are on other servers.
 
Back
Top