Beanstream.AcceptUrl

Version: - string  

Summary

Returns accept URL.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Beanstream.AcceptUrl")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Beanstream.AcceptUrl-->

Check if string has a value

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