DwSearchResultForward

Version: - string  

Summary

Returns a link to the next page with search results.

Settings

The value is generated automatically. The link text/image is based on the Forward button input field and radio buttons in the Paging section for the paragraph module.

(Page > Paragraph > Module tab > Paging panel > Back button)

Examples

Outputting the template tag

@GetString("DwSearchResultForward")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("DwSearchResultForward"); }

Outputting the template tag

<!--@DwSearchResultForward-->

Check if string has a value

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