Ecom:CustomerCenter.Paging.EvenRowClass

Version: 9.8.0 string  

Summary

Returns EventRowClass if paging is available.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Ecom:CustomerCenter.Paging.EvenRowClass")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Ecom:CustomerCenter.Paging.EvenRowClass"); }

Outputting the template tag

<!--@Ecom:CustomerCenter.Paging.EvenRowClass-->

Check if string has a value

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