DwSearchResultList

Version: - string  

Summary

Returns the list of search results.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("DwSearchResultList")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@DwSearchResultList-->

Check if string has a value

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