ProductWorkflowStateChanged:Date

Version: - date  

Summary

Returns DateTime stamp when the workflow state was changed.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("ProductWorkflowStateChanged:Date")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetDate("ProductWorkflowStateChanged:Date"); }

Outputting the template tag

<!--@ProductWorkflowStateChanged:Date-->

Check if date has a value

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