Ecom:Product.OrderLineField.InputTextField.Name

Version: 9.9.0 string  

Summary

Returns the name of the order line input field. It can be used if you want to customize your own order line input field.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Product.OrderLineField.InputTextField.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Ecom:Product.OrderLineField.InputTextField.Name-->

Check if string has a value

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