Global:OMC.Visitor.SecondaryProfile.ID
Version: - integerSummary
Returns an ID for the secondary visitor profile (with the second highest amount of points).
Settings
The value is generated automatically.
Remarks
Check Global:OMC.Visitor.Profile.[Reference].Points about examples for point calculation and primary and secondary profiles.
Examples
Outputting the template tag
@GetInteger("Global:OMC.Visitor.SecondaryProfile.ID")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("Global:OMC.Visitor.SecondaryProfile.ID"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("Global:OMC.Visitor.SecondaryProfile.ID");
}
Outputting the template tag
<!--@Global:OMC.Visitor.SecondaryProfile.ID-->
Check if integer has a value
<!--@If Defined(@Global:OMC.Visitor.SecondaryProfile.ID)-->
Let's output this tag here: <strong><!--@Global:OMC.Visitor.SecondaryProfile.ID--></strong>
<!--@EndIf(@Global:OMC.Visitor.SecondaryProfile.ID)-->