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