EditedDate

Version: - date  

Summary

Returns the created date and time the comment was edited.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("EditedDate")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetDate("EditedDate"); }

Outputting the template tag

<!--@EditedDate-->

Check if date has a value

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