Column.SortUrl

Version: - string  

Summary

Returns the URL for the sorting of the columns.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Column.SortUrl")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Column.SortUrl"); }

Outputting the template tag

<!--@Column.SortUrl-->

Check if string has a value

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