Returns the number of frequently bought products.
The value is generated automatically.
Outputting the template tag
@GetInteger("Ecom:FrequentlyBoughtItems.Quantity")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("Ecom:FrequentlyBoughtItems.Quantity"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("Ecom:FrequentlyBoughtItems.Quantity");
}
Outputting the template tag
<!--@Ecom:FrequentlyBoughtItems.Quantity-->
Check if integer has a value
<!--@If Defined(@Ecom:FrequentlyBoughtItems.Quantity)-->