Ecom:SavedCard.Payment

Version: - string  

Summary

Returns payment the card was created with.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:SavedCard.Payment")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:SavedCard.Payment"); }

Outputting the template tag

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

Check if string has a value

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