Klarna.EID

Version: - string  

Summary

Returns code of merchant, related to Merchant ID field of the payment gateway settings.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Klarna.EID")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Klarna.EID"); }

Outputting the template tag

<!--@Klarna.EID-->

Check if string has a value

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