...
Info | ||
---|---|---|
| ||
This routine is available since starting from Blitz Actions 4.1.0 |
...
Syntax
...
BA_setBlitzAttribute(name, value)
Description
...
Excerpt |
---|
Stores in the HTTP session the given attribute as a (name, value) pair. |
Parameters
...
Parameter name | Type | Required | Description |
---|---|---|---|
name | string | yes | The attribute name |
value | string | yes | The attribute value |
Return type
...
The returned value has no meaning
...
Examples
Example 1
...
Code Block |
---|
return BA_setBlitzAttribute("userKey", "admin"); |
Example 2
...
Code Block |
---|
return BA_setBlitzAttribute("city", "Bucharest"); |
...