Returns the breadcrumb path.
The value is generated automatically.
You need to enable Breadcrumb trail in the Breadcrumb trail section in the module settings for Search(v1/weighted) module.
Outputting the template tag
@GetString("DwSearchResultPath")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("DwSearchResultPath"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("DwSearchResultPath");
}
Outputting the template tag
<!--@DwSearchResultPath-->
Check if string has a value
<!--@If Defined(@DwSearchResultPath)-->