Ogone.State

Version: - string  

Summary

Returns current state of checkout.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ogone.State")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ogone.State"); }

Outputting the template tag

<!--@Ogone.State-->

Check if string has a value

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