DwSearchResultPageList

Version: - string  

Summary

Returns the link to the current page with search results.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("DwSearchResultPageList")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwSearchResultPageList-->

Check if string has a value

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