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