DwPaging.CurrentPage
Version: - integerSummary
Returns the number of the current page of the frontend view.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetInteger("DwPaging.CurrentPage")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("DwPaging.CurrentPage"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("DwPaging.CurrentPage");
}
Outputting the template tag
<!--@DwPaging.CurrentPage-->
Check if integer has a value
<!--@If Defined(@DwPaging.CurrentPage)-->
Let's output this tag here: <strong><!--@DwPaging.CurrentPage--></strong>
<!--@EndIf(@DwPaging.CurrentPage)-->