Ecom:SavedCardLog.Errors

Version: - string  

Summary

Returns Errors of the log's record.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:SavedCardLog.Errors")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:SavedCardLog.Errors"); }

Outputting the template tag

<!--@Ecom:SavedCardLog.Errors-->

Check if string has a value

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