[TemplateTag].Clean

Version: - string  

Summary

The value of the input field for the custom product field.

Settings

The value is based on the custom product field on the product detail page.

(Ecommerce - Product - Details - Product fields - Customfield)

Remarks

Mainly used together with fields of the type link or File manager.

Examples

Outputting the template tag

@GetString("[TemplateTag].Clean")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("[TemplateTag].Clean"); }

Outputting the template tag

<!--@[TemplateTag].Clean-->

Check if string has a value

<!--@If Defined(@[TemplateTag].Clean)--> Let's output this tag here: <strong><!--@[TemplateTag].Clean--></strong> <!--@EndIf(@[TemplateTag].Clean)-->