Ecom:CustomerCenter.Paging.PageClass

Version: - string  

Summary

Returns a CSS class for the page link.

Settings

The value is generated automatically.

Remarks

The tag is only rendered if more than one order page exists.

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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