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.
The value is generated automatically.
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)-->