AllUsers.DwPaging.NextButtonText

Version: - string  

Summary

Returns the text of the Next button in frontend.

Settings

The value is based on the 'Next' button text input field.

(Paragraph > Module settings > Paging panel > 'Next' button text)

Remarks

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

Examples

Outputting the template tag

@GetString("AllUsers.DwPaging.NextButtonText")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@AllUsers.DwPaging.NextButtonText-->

Check if string has a value

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