ePay.timeout

Version: - string  

Summary

Defines a time span in which it is possible to complete the payment. The value of timeout equals the number of minutes, e.g. "15" for 15 minutes.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ePay.timeout")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("ePay.timeout"); }

Outputting the template tag

<!--@ePay.timeout-->

Check if string has a value

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