QuickPay3.md5check
Version: - stringSummary
Returns the md5key for the Quickpay payment.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("QuickPay3.md5check")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPay3.md5check"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPay3.md5check");
}
Outputting the template tag
<!--@QuickPay3.md5check-->
Check if string has a value
<!--@If Defined(@QuickPay3.md5check)-->
Let's output this tag here: <strong><!--@QuickPay3.md5check--></strong>
<!--@EndIf(@QuickPay3.md5check)-->