Returns the user ID.
The value is generated automatically.
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)-->