Ecom:CustomerCenter.Search.Years.To
Version: - stringSummary
Returns year option values for the year (to) dropdown.
Settings
The value is generated automatically.
Remarks
The tag should be included in a HTML <select>
tag.
Examples
Outputting the template tag
@GetString("Ecom:CustomerCenter.Search.Years.To")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Ecom:CustomerCenter.Search.Years.To"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Ecom:CustomerCenter.Search.Years.To");
}
Outputting the template tag
<!--@Ecom:CustomerCenter.Search.Years.To-->
Check if string has a value
<!--@If Defined(@Ecom:CustomerCenter.Search.Years.To)-->
Let's output this tag here: <strong><!--@Ecom:CustomerCenter.Search.Years.To--></strong>
<!--@EndIf(@Ecom:CustomerCenter.Search.Years.To)-->