Skip to content

Tokens

Tokens are placeholders that XMod Pro replaces with real values at run time. Every token starts with [[ and ends with ]]. The text in between determines what the token resolves to:

html
[[FirstName]]                      <!-- a field value from the current row     -->
[[User:DisplayName]]               <!-- a property of the current user         -->
[[Url:id]]                         <!-- a query-string parameter               -->
[[DateAdd:7,d,yyyy-MM-dd]]         <!-- a calculated date                      -->
[[Join("Hi, {0}!", [[FirstName]])]] <!-- a formatted string                    -->
[[=Price * 1.06]]                  <!-- an arithmetic expression (v5+)         -->

Token reference

PageFormatWhat it returns
Field Tokens[[fieldName]]A column value from the current row
Data Parameter Tokens[[TemplateID_list@param]]A SQL parameter value (typical use: OUTPUT parameters)
User Tokens[[User:property]]A property of the currently logged-in user
Portal Tokens[[Portal:property]]A setting from the current DNN portal
Page Tokens[[Page:property]]A property of the current DNN page
Module Tokens[[Module:property]]A property of the current XMod Pro module instance
Request Tokens[[Request:property]], [[Url:param]], [[Form:param]], [[Cookie:name]]HTTP request data — query string, post body, cookies, headers
Function Tokens[[Join(...)]], [[Localize:key]]Run a function — string formatting, localization
DateAdd Token[[DateAdd:n,unit,format]]A date relative to today
Expression Tokens v5.0[[=...]]An arithmetic, string, or conditional expression

Standard token rules

These rules apply to all tokens.

Anywhere — HTML and plain text

Tokens work as HTML attribute values or as bare text:

html
<img src="[[ImageUrl]]" alt="[[Caption]]" />
<p>Welcome, [[User:FirstName]]!</p>

Inside an XMP tag attribute — use single quotes

When a token appears inside the attribute of an XMP tag (<xmod:DetailButton>, <xmod:CommandButton>, <TextBox>, etc.), wrap the attribute value in single quotes instead of double quotes — the brackets in [[...]] confuse the XML parser otherwise.

html
<!-- ✓ Correct -->
<xmod:DetailButton Text='[[FirstName]]' />

<!-- ✗ Wrong — fails to parse -->
<xmod:DetailButton Text="[[FirstName]]" />

Where each token can be used

Token typeList viewDetail viewHeader / Footer / NoItemsForm attributesForm body
Field tokens (template)✗ — no current rown/an/a
Field tokens (form)n/an/an/a✓ — bound to <SelectCommand>
User / Portal / Page / Module / Request
DateAdd / Function tokens
Data parameter tokens✗ template-only✗ template-only
Expression tokens (v5+)

Tokens are not case-sensitive on the prefix

[[User:Email]], [[user:Email]], and [[USER:Email]] all work. The key part (after the colon) is case-sensitive when it refers to a field column or DNN profile property.