Ecom:Rma.Created
Version: - dateSummary
Returns date stamp of RMA creation
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetDate("Ecom:Rma.Created")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetDate("Ecom:Rma.Created"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetDate("Ecom:Rma.Created");
}
Outputting the template tag
<!--@Ecom:Rma.Created-->
Check if date has a value
<!--@If Defined(@Ecom:Rma.Created)-->
Let's output this tag here: <strong><!--@Ecom:Rma.Created--></strong>
<!--@EndIf(@Ecom:Rma.Created)-->