Step.ButtonName

Version: - string  

Summary

Returns the step button name.

Settings

The value is generated automatically.

Remarks

This tag can e.g. be used in an input form field as name and id.

Examples

Outputting the template tag

@GetString("Step.ButtonName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Step.ButtonName"); }

Outputting the template tag

<!--@Step.ButtonName-->

Check if string has a value

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