PageEditInBackendUrl

Version: - string  

Summary

Returns a direct URL to the backend page edit page.

Settings

The value is generated automatically.

Remarks

Requires that you are logged in to the backend.

Examples

Outputting the template tag

@GetString("PageEditInBackendUrl")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("PageEditInBackendUrl"); }

Outputting the template tag

<!--@PageEditInBackendUrl-->

Check if string has a value

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