ePay.hash
Version: - stringSummary
Returns HASH checksum. This field is used to create an MD5 stamp in the internet shop, which is validated by ePay to avoid customers manipulate with the data.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.hash")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.hash"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.hash");
}
Outputting the template tag
<!--@ePay.hash-->
Check if string has a value
<!--@If Defined(@ePay.hash)-->
Let's output this tag here: <strong><!--@ePay.hash--></strong>
<!--@EndIf(@ePay.hash)-->