SelectedUsers.DwPaging.LastPageLink

Version: - string  

Summary

Returns the last page link.

Settings

The value is generated automatically.

Remarks

Tag is only available if Activated checkbox is enabled in Extranet module settings in Paging section.

Examples

Outputting the template tag

@GetString("SelectedUsers.DwPaging.LastPageLink")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("SelectedUsers.DwPaging.LastPageLink"); }

Outputting the template tag

<!--@SelectedUsers.DwPaging.LastPageLink-->

Check if string has a value

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