How to redirect to different pages on successful transaction and failure of transaction?by using authorize sim integration.
or
how can we show customer whether his transaction is successful or not?immediately after transaction
11-15-2011 10:56 PM
SIM displays the receipt on Authorize.net, so you don't need to program one yourself. You can configure the receipt page in your account control panel. If you want people to come back to your site after viewing the receipt, you should add fields to your form as follows:
<input type="hidden" name="x_receipt_link_method" value="LINK"> <input type="hidden" name="x_receipt_link_text" value="Click here to return to our homepage!"> <input type="hidden" name="x_receipt_link_url" value="http://www.mydomain.com">
See Chapter 4: Receipt Options:
11-16-2011 04:23 AM