Returns URL of payment gateway.
The value is generated automatically, based on Process page field in the payment settings.
Outputting the template tag
@GetString("Buckaroo.GatewayUrl")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Buckaroo.GatewayUrl"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Buckaroo.GatewayUrl");
}
Outputting the template tag
<!--@Buckaroo.GatewayUrl-->
Check if string has a value
<!--@If Defined(@Buckaroo.GatewayUrl)-->