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