Ecom:Order:OrderLine.ProductName

Version: - string  

Summary

Returns the product name for the orderline.

Settings

The value is generated automatically.

Remarks

The value is based on the Name input field under the General tab for a product.

(Ecommerce > Product Catalog > Product group/product > Details > Settings > Name)

Examples

Outputting the template tag

@GetString("Ecom:Order:OrderLine.ProductName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order:OrderLine.ProductName"); }

Outputting the template tag

<!--@Ecom:Order:OrderLine.ProductName-->

Check if string has a value

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