DwPaging.PreviousPageLink

Version: - string  

Summary

Returns the previous page link.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("DwPaging.PreviousPageLink")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwPaging.PreviousPageLink-->

Check if string has a value

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