Form.SystemFields

Version: - string  

Summary

Returns the code snippet for the hidden input fields for the form.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Form.SystemFields")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Form.SystemFields"); }

Outputting the template tag

<!--@Form.SystemFields-->

Check if string has a value

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