Buckaroo.Return_Success

Version: - string  

Summary

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

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Buckaroo.Return_Success")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Buckaroo.Return_Success-->

Check if string has a value

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