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