Form.End

Version: - string  

Summary

Returns the end tag for the form.

</form>

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Form.End")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@Form.End-->

Check if string has a value

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