Returns text of cancel message the checkout handler.
The value is generated automatically.
Outputting the template tag
@GetString("CheckoutHandler:CancelMessage")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("CheckoutHandler:CancelMessage"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("CheckoutHandler:CancelMessage");
}
Outputting the template tag
<!--@CheckoutHandler:CancelMessage-->
Check if string has a value
<!--@If Defined(@CheckoutHandler:CancelMessage)-->