Ecom:Product.OrderLineField.SystemName

Version: - string  

Summary

Returns the system name of the order line field.

Settings

The value is based on the System name field under the order line field settings.

(Management Center > Ecommerce > Orders > Order line fields > Order line field > Settings > System name)

Remarks

The HTML tag is Ecom:Product.OrderLineField.Systemname - with a lower case N in 'Systename'.

Examples

Outputting the template tag

@GetString("Ecom:Product.OrderLineField.SystemName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.OrderLineField.SystemName"); }

Outputting the template tag

<!--@Ecom:Product.OrderLineField.SystemName-->

Check if string has a value

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