Users.DwPaging.FirstPageLink

Version: -  

Summary

Returns the first 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

@GetObject("Users.DwPaging.FirstPageLink")

Check if tag has a value

@if(!var.IsNullOrWhiteSpace(GetObject("Users.DwPaging.FirstPageLink"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ var storedTag = GetObject("Users.DwPaging.FirstPageLink"); }

Outputting the template tag

<!--@Users.DwPaging.FirstPageLink-->

Check if object has a value

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