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