Forms.Page.NewLink

Version: - string  

Summary

Returns URL to add the form's new row.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Forms.Page.NewLink")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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