DwPaging.LastPageLink

Version: - string  

Summary

Returns link to last page.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("DwPaging.LastPageLink")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwPaging.LastPageLink-->

Check if string has a value

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