ePay.ownreceipt

Version: - string  

Summary

If returns 1 then the customers are redirected to your accepturl as soon as the payment is made. The receipt shown in the payment window is skipped. A valid accepturl must be defined to use ownreceipt..

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("ePay.ownreceipt")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@ePay.ownreceipt-->

Check if string has a value

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