What is the correct way to write the processing string?
We need help understanding/correcting the transaction processing lines of code that we put in our form.
In the example the following was presented:
<input type="hidden" name="OnSuccessUrl" id="OnSuccessUrl" value="https://www.clickandpledge.com/devel.../authorize.asp" />
<input type="hidden" name="OnDeclineUrl" id="OnDeclineUrl" value="https://www.clickandpledge.com/devel...se/Decline.asp" />
<input type="hidden" name="OnErrorUrl" id="OnErrorUrl" value="https://www.clickandpledge.com/devel...onse/Error.asp" />
Do we need to create pages via our website that are of the following?
or
Which one is correct?
We know where to place the Account Guid Value and the AccountID, however we are not sure what we are suppose to do with the WID and the URL’s. Are those the correct URL’s? do we need to create pages on our website to reflect the urls?
<td align="right"><input id="OnSuccessUrl" name="OnSuccessUrl" type="hidden" value="https://www.allcharitiescount.com/authorize.asp" /> <input id="OnDeclineUrl" name="OnDeclineUrl" type="hidden" value="https://www.allcharitiescount.com/Decline.asp" /> <input id="OnErrorUrl" name="OnErrorUrl" type="hidden" value="https://www.allcharitiescount.com/Error.asp" /> <input id="AccountGuid" name="AccountGuid" type="hidden" value="222xxxxxxxxxxxxxxxxxxxxxxxxxx" /> <input id="AccountID" name="AccountID" type="hidden" value="2xxxx" /> <input id="WID" name="WID" type="hidden" value=" WID " /> <input id="RefID" name="RefID" type="hidden" value="7xxxx" /> <input id="Tracker" name="Tracker" type="hidden" value="" /> <input id="SendReceipt" name="SendReceipt" type="hidden" value="true" /> <input id="OrderMode" name="OrderMode" type="hidden" value="Production" /> <input id="TransactionType" name="TransactionType" type="hidden" value="Payment" /> <input id="Subm Donation" name="Subm Donation" type="submit" value="Submit Donation" />
We need help understanding/correcting the transaction processing lines of code that we put in our form.
In the example the following was presented:
<input type="hidden" name="OnSuccessUrl" id="OnSuccessUrl" value="https://www.clickandpledge.com/devel.../authorize.asp" />
<input type="hidden" name="OnDeclineUrl" id="OnDeclineUrl" value="https://www.clickandpledge.com/devel...se/Decline.asp" />
<input type="hidden" name="OnErrorUrl" id="OnErrorUrl" value="https://www.clickandpledge.com/devel...onse/Error.asp" />
Do we need to create pages via our website that are of the following?
or
Which one is correct?
We know where to place the Account Guid Value and the AccountID, however we are not sure what we are suppose to do with the WID and the URL’s. Are those the correct URL’s? do we need to create pages on our website to reflect the urls?
<td align="right"><input id="OnSuccessUrl" name="OnSuccessUrl" type="hidden" value="https://www.allcharitiescount.com/authorize.asp" /> <input id="OnDeclineUrl" name="OnDeclineUrl" type="hidden" value="https://www.allcharitiescount.com/Decline.asp" /> <input id="OnErrorUrl" name="OnErrorUrl" type="hidden" value="https://www.allcharitiescount.com/Error.asp" /> <input id="AccountGuid" name="AccountGuid" type="hidden" value="222xxxxxxxxxxxxxxxxxxxxxxxxxx" /> <input id="AccountID" name="AccountID" type="hidden" value="2xxxx" /> <input id="WID" name="WID" type="hidden" value=" WID " /> <input id="RefID" name="RefID" type="hidden" value="7xxxx" /> <input id="Tracker" name="Tracker" type="hidden" value="" /> <input id="SendReceipt" name="SendReceipt" type="hidden" value="true" /> <input id="OrderMode" name="OrderMode" type="hidden" value="Production" /> <input id="TransactionType" name="TransactionType" type="hidden" value="Payment" /> <input id="Subm Donation" name="Subm Donation" type="submit" value="Submit Donation" />
Comment