PageItemEditInBackendUrl
Version: - stringSummary
Returns a direct URL to the backend item 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("PageItemEditInBackendUrl")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("PageItemEditInBackendUrl"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("PageItemEditInBackendUrl");
}
Outputting the template tag
<!--@PageItemEditInBackendUrl-->
Check if string has a value
<!--@If Defined(@PageItemEditInBackendUrl)-->
Let's output this tag here: <strong><!--@PageItemEditInBackendUrl--></strong>
<!--@EndIf(@PageItemEditInBackendUrl)-->