CartV2.NextStepButtonName

Version: - string  

Summary

Returns a value which can be used to create a Next button for moving to the next step of the cart.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("CartV2.NextStepButtonName")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("CartV2.NextStepButtonName"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("CartV2.NextStepButtonName"); }

Outputting the template tag

<!--@CartV2.NextStepButtonName-->

Check if string has a value

<!--@If Defined(@CartV2.NextStepButtonName)--> Let's output this tag here: <strong><!--@CartV2.NextStepButtonName--></strong> <!--@EndIf(@CartV2.NextStepButtonName)-->