Ecom:Order.GiftCard.Code

Version: - string  

Summary

Returns code of the gift card.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Order.GiftCard.Code")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Order.GiftCard.Code"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Order.GiftCard.Code"); }

Outputting the template tag

<!--@Ecom:Order.GiftCard.Code-->

Check if string has a value

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