Ecom:RMA:OrderLine.Date

Version: - date  

Summary

Returns Date of the orderline.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDate("Ecom:RMA:OrderLine.Date")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetDate("Ecom:RMA:OrderLine.Date"); }

Outputting the template tag

<!--@Ecom:RMA:OrderLine.Date-->

Check if date has a value

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