Ecom:Cart.ValidationError.[Field].ErrorMessage

Version: - string  

Summary

Returns an error message if the field returns an error.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:Cart.ValidationError.[Field].ErrorMessage")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Ecom:Cart.ValidationError.[Field].ErrorMessage"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:Cart.ValidationError.[Field].ErrorMessage"); }

Outputting the template tag

<!--@Ecom:Cart.ValidationError.[Field].ErrorMessage-->

Check if string has a value

<!--@If Defined(@Ecom:Cart.ValidationError.[Field].ErrorMessage)--> Let's output this tag here: <strong><!--@Ecom:Cart.ValidationError.[Field].ErrorMessage--></strong> <!--@EndIf(@Ecom:Cart.ValidationError.[Field].ErrorMessage)-->