Field.Input

Version: - string  

Summary

Returns an input field where customers can enter information.

Settings

Not documented

Examples

Outputting the template tag

@GetString("Field.Input")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Field.Input"); }

Outputting the template tag

<!--@Field.Input-->

Check if string has a value

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