EmailMd5Hash

Version: - string  

Summary

Returns the email address that the visitor has submitted with the comment in an unique md5 hash encryption.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("EmailMd5Hash")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("EmailMd5Hash"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("EmailMd5Hash"); }

Outputting the template tag

<!--@EmailMd5Hash-->

Check if string has a value

<!--@If Defined(@EmailMd5Hash)--> Let's output this tag here: <strong><!--@EmailMd5Hash--></strong> <!--@EndIf(@EmailMd5Hash)-->