Home > Contents > Index >
asset:get
Retrieves the value of a single field from a loaded asset object and stores it in a Sites variable.
Syntax
<asset:get name="assetName
"
field="fieldName
" [output="outputVariable
"]/>Parameters
name
(required)- Input. The name assigned to the asset whose field value you want to get. This asset must be loaded and assigned a name before you can pass its name to this tag. (See
asset:load
.)
field
(required)- Input. The name of the field whose value you want to retrieve.
output
(optional)- Input. The name of the output variable to create to store the value of the field. If you do not supply a name for this variable, Sites uses one with the same name as the field.
Description
This tag obtains the value (or contents) from the specified field of a loaded asset and stores it in the specified output variable.
You typically use this tag to extract the asset information (from an asset object) that you want to display on-line. If you want to extract information from more than one field, use
asset:scatter
. (Seeasset:scatter
.)Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing. -10005 The requested object is not in the object pool (is not loaded into memory).Example
This code retrieves and displays the contents (value) of the description field:
<asset:get name="Article1" field="description" output="headline"/> <ics:getvar name="headline"/>This code retrieves the value of the abstract field, writes it to the variable named
abstract
, and then displays the contents of the variable:
<asset:get name="Article1" field="abstract" /> <ics:getvar name="abstract"/>See Also
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.