Buckaroo.Return_Reject
Version: - stringSummary
Returns URL will be performed on reject the payment as follows: http://[Site domane name]/Default.aspx?ID=[Page ID with current cart]&CheckoutHandlerOrderID=OrderID&BuckarooState=Reject.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Buckaroo.Return_Reject")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Buckaroo.Return_Reject"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Buckaroo.Return_Reject");
}
Outputting the template tag
<!--@Buckaroo.Return_Reject-->
Check if string has a value
<!--@If Defined(@Buckaroo.Return_Reject)-->
Let's output this tag here: <strong><!--@Buckaroo.Return_Reject--></strong>
<!--@EndIf(@Buckaroo.Return_Reject)-->