AccessUserID
Version: - integerSummary
Returns the user ID.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetInteger("AccessUserID")
Check if tag has a value
@if(!int.IsNullOrWhiteSpace(GetInteger("AccessUserID"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
int storedTag = GetInteger("AccessUserID");
}
Outputting the template tag
<!--@AccessUserID-->
Check if integer has a value
<!--@If Defined(@AccessUserID)-->
Let's output this tag here: <strong><!--@AccessUserID--></strong>
<!--@EndIf(@AccessUserID)-->