Buckaroo.Return_Error

Version: - string  

Summary

Returns URL will be performed on error of the payment as follows:  http://[Site domane name]/Default.aspx?ID=[Page ID with current cart]&CheckoutHandlerOrderID=OrderID&BuckarooState=Error.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Buckaroo.Return_Error")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Buckaroo.Return_Error"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Buckaroo.Return_Error"); }

Outputting the template tag

<!--@Buckaroo.Return_Error-->

Check if string has a value

<!--@If Defined(@Buckaroo.Return_Error)--> Let's output this tag here: <strong><!--@Buckaroo.Return_Error--></strong> <!--@EndIf(@Buckaroo.Return_Error)-->