Ecom:CustomerCenter.SavedCardLog.Count
Version: - integerSummary
Returns count of records in log related to saved card.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetInteger("Ecom:CustomerCenter.SavedCardLog.Count")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("Ecom:CustomerCenter.SavedCardLog.Count"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("Ecom:CustomerCenter.SavedCardLog.Count");
}
Outputting the template tag
<!--@Ecom:CustomerCenter.SavedCardLog.Count-->
Check if integer has a value
<!--@If Defined(@Ecom:CustomerCenter.SavedCardLog.Count)-->
Let's output this tag here: <strong><!--@Ecom:CustomerCenter.SavedCardLog.Count--></strong>
<!--@EndIf(@Ecom:CustomerCenter.SavedCardLog.Count)-->