Returns the transaction currency for use by Quickpay.
The value is generated automatically.
Outputting the template tag
@GetString("QuickPay3.currency")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPay3.currency"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPay3.currency");
}
Outputting the template tag
<!--@QuickPay3.currency-->
Check if string has a value
<!--@If Defined(@QuickPay3.currency)-->