Returns a summary of the current result item (without the search phrase being highlighted).
The value is based on the text in which the search phrase is found.
The search phrase is not highlighted in the summary.
Outputting the template tag
@GetString("DwSearchResultSummaryNoHighlight")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("DwSearchResultSummaryNoHighlight"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("DwSearchResultSummaryNoHighlight");
}
Outputting the template tag
<!--@DwSearchResultSummaryNoHighlight-->
Check if string has a value
<!--@If Defined(@DwSearchResultSummaryNoHighlight)-->