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