ePay.windowid

Version: - string  

Summary

Defines which payment window to use. If you have several shops/domains and want to open different payment windows (with different logos or settings) for each domain, use the parameter windowid to govern which window to open.

You can see your payment windows in the ePay administration under Settings -> Payment window.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ePay.windowid")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@ePay.windowid-->

Check if string has a value

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