Ecom:Product.LinkGroup.Clean.PID

Version: - string  

Summary

Returns the path (containing the Group ID and paragraph ID) to the product.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Product.LinkGroup.Clean.PID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Product.LinkGroup.Clean.PID"); }

Outputting the template tag

<!--@Ecom:Product.LinkGroup.Clean.PID-->

Check if string has a value

<!--@If Defined(@Ecom:Product.LinkGroup.Clean.PID)--> Let's output this tag here: <strong><!--@Ecom:Product.LinkGroup.Clean.PID--></strong> <!--@EndIf(@Ecom:Product.LinkGroup.Clean.PID)-->