Ecom:SavedCard.ID

Version: - integer  

Summary

Returns ID of the saved card.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetInteger("Ecom:SavedCard.ID")

Check if tag has a value

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

Assign tag to a value for later use

@{ int storedTag = GetInteger("Ecom:SavedCard.ID"); }

Outputting the template tag

<!--@Ecom:SavedCard.ID-->

Check if integer has a value

<!--@If Defined(@Ecom:SavedCard.ID)--> Let's output this tag here: <strong><!--@Ecom:SavedCard.ID--></strong> <!--@EndIf(@Ecom:SavedCard.ID)-->