UserManagement:Search.ParagraphID
Version: - integerSummary
Returns the ID of the paragraph with the search form.
Settings
The value is generated automatically.
Remarks
Available when @GetString("UserManagement:Search.Form") is used in list template.
Examples
Outputting the template tag
@GetInteger("UserManagement:Search.ParagraphID")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("UserManagement:Search.ParagraphID"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("UserManagement:Search.ParagraphID");
}
Outputting the template tag
<!--@UserManagement:Search.ParagraphID-->
Check if integer has a value
<!--@If Defined(@UserManagement:Search.ParagraphID)-->
Let's output this tag here: <strong><!--@UserManagement:Search.ParagraphID--></strong>
<!--@EndIf(@UserManagement:Search.ParagraphID)-->