Beanstream.CancelUrl

Version: - string  

Summary

Returns cancel URL.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Beanstream.CancelUrl")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Beanstream.CancelUrl"); }

Outputting the template tag

<!--@Beanstream.CancelUrl-->

Check if string has a value

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