Ecom:FrequentlyBoughtItems.Quantity

Version: - integer  

Summary

Returns the number of frequently bought products.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Ecom:FrequentlyBoughtItems.Quantity")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

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

Assign tag to a value for later use

@{
int storedTag = GetInteger("Ecom:FrequentlyBoughtItems.Quantity");
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Outputting the template tag

<!--@Ecom:FrequentlyBoughtItems.Quantity-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if integer has a value

<!--@If Defined(@Ecom:FrequentlyBoughtItems.Quantity)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX