Ecom:Product.Prices.ValidTo

Version: - string  

Summary

Returns the end date that is selected as requirement for the price.

Settings

The value is based on the Valid to field for the product in the price matrix.

(Ecommerce - Product catalog - Shop - Product - Prices - Valid to)

Remarks

Returns blank if no date selected.

Examples

Outputting the template tag

@GetString("Ecom:Product.Prices.ValidTo")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.Prices.ValidTo"); }

Outputting the template tag

<!--@Ecom:Product.Prices.ValidTo-->

Check if string has a value

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