Ecom:Order:OrderLine.ProductNumber

Version: - string  

Summary

Returns the product number for the orderline.

Settings

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

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

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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