Klarna.PClassId

Version: - string  

Summary

Returns the PClass id number. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Klarna.PClassId")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Klarna.PClassId-->

Check if string has a value

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