Ecom:Product:Reward.Percentage

Version: 9.6.0 integer  

Summary

Returns percentage amount of reward applied.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Ecom:Product:Reward.Percentage")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("Ecom:Product:Reward.Percentage"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("Ecom:Product:Reward.Percentage"); }

Outputting the template tag

<!--@Ecom:Product:Reward.Percentage-->

Check if integer has a value

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