Returns the URL to the page that the payments will redirect to if the order is approved.
The value is generated automatically.
DIBS uses the URL as redirect address if the payment is accepted.
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)-->