Page:Ecom.ProductList.NextPage.Clean

Version: - string  

Summary

Returns the link to the next product (if it exists) in the following form:

/Default.aspx?ID=1760&GroupID=&PageNum=2

Settings

The value is generated automatically.

Remarks

The tag is rendered when the Product Catalog module is available on the page.

Examples

Outputting the template tag

@GetString("Page:Ecom.ProductList.NextPage.Clean")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Page:Ecom.ProductList.NextPage.Clean"); }

Outputting the template tag

<!--@Page:Ecom.ProductList.NextPage.Clean-->

Check if string has a value

<!--@If Defined(@Page:Ecom.ProductList.NextPage.Clean)--> Let's output this tag here: <strong><!--@Page:Ecom.ProductList.NextPage.Clean--></strong> <!--@EndIf(@Page:Ecom.ProductList.NextPage.Clean)-->