Ecom:RecurringOrder.EndDate

Version: - string  

Summary

Returns a date when recurring order performing will be completed.  

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:RecurringOrder.EndDate")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:RecurringOrder.EndDate"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:RecurringOrder.EndDate"); }

Outputting the template tag

<!--@Ecom:RecurringOrder.EndDate-->

Check if string has a value

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