LeadsMail:PotentialLeads.TotalPageViews

Version: - integer  

Summary

Returns quontity of total page views by the potential lead. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("LeadsMail:PotentialLeads.TotalPageViews")

Check if tag has a value

@if(!int.IsNullOrWhiteSpace(GetInteger("LeadsMail:PotentialLeads.TotalPageViews"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ int storedTag = GetInteger("LeadsMail:PotentialLeads.TotalPageViews"); }

Outputting the template tag

<!--@LeadsMail:PotentialLeads.TotalPageViews-->

Check if integer has a value

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