Ecom:CustomerCenter.Search.MonthNames.From

Version: - string  

Summary

Returns month option values for the month (from) 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.MonthNames.From")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:CustomerCenter.Search.MonthNames.From"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.Search.MonthNames.From"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.Search.MonthNames.From-->

Check if string has a value

<!--@If Defined(@Ecom:CustomerCenter.Search.MonthNames.From)--> Let's output this tag here: <strong><!--@Ecom:CustomerCenter.Search.MonthNames.From--></strong> <!--@EndIf(@Ecom:CustomerCenter.Search.MonthNames.From)-->