Forms.Page.EditLink

Version: - string  

Summary

Returns URL to edit the form's row.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Forms.Page.EditLink")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Forms.Page.EditLink"); }

Outputting the template tag

<!--@Forms.Page.EditLink-->

Check if string has a value

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