OrderDetail.Name

Version: - string  

Summary

Returnst name of the orderline in specific code. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("OrderDetail.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("OrderDetail.Name"); }

Outputting the template tag

<!--@OrderDetail.Name-->

Check if string has a value

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