Dibs.accepturl

Version: - string  

Summary

Returns the URL to the page that the payments will redirect to if the order is approved.

Settings

The value is generated automatically.

Remarks

DIBS uses the URL as redirect address if the payment is accepted.

Examples

Outputting the template tag

@GetString("Dibs.accepturl")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Dibs.accepturl"); }

Outputting the template tag

<!--@Dibs.accepturl-->

Check if string has a value

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