Ecom:Cart.Paymethod.ID

Version: - string  

Summary

Returns the ID of the payment method.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Cart.Paymethod.ID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Cart.Paymethod.ID"); }

Outputting the template tag

<!--@Ecom:Cart.Paymethod.ID-->

Check if string has a value

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