laredo512 Posted February 22, 2006 Posted February 22, 2006 Is there an equivalent to doing this programmatically: <form name="form1" id="form1" method="post" action="https://remotesite.com/xample.php"> <input type="hidden" name="transaction" value="whatever" /> I want to be able to set those hidden values in my code dynamically before the user goes to the foreign site to which I have no control. I tried response.addheader , response.appendheader before calling a response.redirect... Can't seem to find an answer. by the way, server.transfer doesn't work either. Thanks Quote Laredo512 * using VS.NET Pro 2003 *
Administrators PlausiblyDamp Posted February 22, 2006 Administrators Posted February 22, 2006 What code do you have so far? Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
laredo512 Posted February 22, 2006 Author Posted February 22, 2006 What code do you have so far? Dim var1 as string = "Price" Dim var2 as string = "30.00" Response.AppendHeader(var1,var2) Response.Redirect("[url="http://www.3rdpartysite.com/tx.php"]http://www.3rdpartysite.com/tx.php[/url]") Quote Laredo512 * using VS.NET Pro 2003 *
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.