S
staeri
From my page shopping cart page I want to send the amount value to the
following payment page:
<script type="text/javascript">
window.onload = function (evt) { document.forms[0].submit(); }
</script>
</head>
<body>
<form name="payform" method="post"
action="https://mmm.com/payment/start.pml">
<input type="hidden" id="amount" name="amount" value=""
runat="server" />
<input type="hidden" name="merchant" value="752" />
</form>
The amount value should be set in the hidden input and then the form
should be submitted autmatically to the payment company. I have
problems capturing and setting the amount value.
I've tried with:
Sub Page_load()
amount.Value = 1212
End Sub
But I receive an error message from the payment company telling me that
amount is missing.
Can someone help me think clear?
Regards,
S
following payment page:
<script type="text/javascript">
window.onload = function (evt) { document.forms[0].submit(); }
</script>
</head>
<body>
<form name="payform" method="post"
action="https://mmm.com/payment/start.pml">
<input type="hidden" id="amount" name="amount" value=""
runat="server" />
<input type="hidden" name="merchant" value="752" />
</form>
The amount value should be set in the hidden input and then the form
should be submitted autmatically to the payment company. I have
problems capturing and setting the amount value.
I've tried with:
Sub Page_load()
amount.Value = 1212
End Sub
But I receive an error message from the payment company telling me that
amount is missing.
Can someone help me think clear?
Regards,
S