W
WJ
I have an Asp.Net page that redirects the user to another page with a piece
of data to be passed. Below is the c# instruction:
Response.Redirect("mySpecialPage.aspx?go1="+strGoName);
This will expose the "go1" parameter on the Address field of the MS/IE
browser because it uses the "GET" method. Is there a way that I can force
the system to use the "POST" method with the above payload ?
Thanks for your help,
John
of data to be passed. Below is the c# instruction:
Response.Redirect("mySpecialPage.aspx?go1="+strGoName);
This will expose the "go1" parameter on the Address field of the MS/IE
browser because it uses the "GET" method. Is there a way that I can force
the system to use the "POST" method with the above payload ?
Thanks for your help,
John