DwSearchResultEditdateTime
Version: - stringSummary
Returns the modification date and time of the current result item.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("DwSearchResultEditdateTime")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("DwSearchResultEditdateTime"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("DwSearchResultEditdateTime");
}
Outputting the template tag
<!--@DwSearchResultEditdateTime-->
Check if string has a value
<!--@If Defined(@DwSearchResultEditdateTime)-->
Let's output this tag here: <strong><!--@DwSearchResultEditdateTime--></strong>
<!--@EndIf(@DwSearchResultEditdateTime)-->