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")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

<!--@If Defined(@Ecom:CustomerCenter.Paging.PageClass)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX