Hi
I am submitting data to a payment provider using an html form with hidden fields and SSL. However, it appears that this data can be intercepted and modified using a proxy tool. How can I achieve the equivalent within classic ASP alone - i.e. generate and submit the form from the server rather than from the browser?
The form currently looks something like this:
If possible I'd prefer any solution to support older versions of IE but it's not essential.
Thanks in advance.
I am submitting data to a payment provider using an html form with hidden fields and SSL. However, it appears that this data can be intercepted and modified using a proxy tool. How can I achieve the equivalent within classic ASP alone - i.e. generate and submit the form from the server rather than from the browser?
The form currently looks something like this:
Code:
<form action="[URL unfurl="true"]https://paymentprovider.com/purchase"[/URL] method=POST id=form1 name=PayForm>
<input type=hidden name="instId" value="1234">
<input type=hidden name="amount" value="100.00">
<input type=hidden name="currency" value="GBP">
<input type=hidden name="country" value="GB">
<input type=hidden name="name" value="Fred Bloggs">
<input type=hidden name="email" value="fred@bloggs.com">
<input type=submit value="invisible" id=submit1 name=submit1 style="width:0">
</form>
<script type="text/javascript">document.WorldPayForm.submit() </script>
If possible I'd prefer any solution to support older versions of IE but it's not essential.
Thanks in advance.