Dibs.oiTypes

Version: - string  

Summary

Returns string of defined types used by DIBS Payment Window during transaction. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Dibs.oiTypes")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Dibs.oiTypes"); }

Outputting the template tag

<!--@Dibs.oiTypes-->

Check if string has a value

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