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.
The value is generated automatically.
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)-->