Ogone.continueurl
Version: - stringSummary
Returns the URL to the page that the payment will redirect to if the customer continues the payment.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Ogone.continueurl")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Ogone.continueurl"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Ogone.continueurl");
}
Outputting the template tag
<!--@Ogone.continueurl-->
Check if string has a value
<!--@If Defined(@Ogone.continueurl)-->
Let's output this tag here: <strong><!--@Ogone.continueurl--></strong>
<!--@EndIf(@Ogone.continueurl)-->