Form.SaveStatus

Version: - string  

Summary

Returns the value "Form saved" if the form was saved succesfully in frontend.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Form.SaveStatus")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Form.SaveStatus-->

Check if string has a value

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