NewsActiveTo_validator

Version: - string  

Summary

Returns the validation message for the Active to dropdowns.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("NewsActiveTo_validator")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("NewsActiveTo_validator"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("NewsActiveTo_validator"); }

Outputting the template tag

<!--@NewsActiveTo_validator-->

Check if string has a value

<!--@If Defined(@NewsActiveTo_validator)--> Let's output this tag here: <strong><!--@NewsActiveTo_validator--></strong> <!--@EndIf(@NewsActiveTo_validator)-->