Klarna.UpdateBillingInfo

Version: - string  

Summary

Returns current state of Update billing info check-box in the payment gateway settings.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Klarna.UpdateBillingInfo")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Klarna.UpdateBillingInfo-->

Check if string has a value

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