DwPaging.TypeOfNextButton

Version: - string  

Summary

Returns type of next button.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("DwPaging.TypeOfNextButton")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwPaging.TypeOfNextButton-->

Check if string has a value

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