You are on page 1of 1

What is DSP?

DSP is tag library in ATG. DSP tag library is used to access all data types in ATGs
nucleus framework.
In any pages that import the DSP tag library, you should use DSP tags instead of JSP
tags. DSP tag library supports both scripting and JSP EL.
e.g.
<dsp:valueof param=<%= name %> />
<dsp:valueof param=${name} />

How to set component to EL variable using DSP tag?


We can set nucleus component and Dynamic bean to variable, which can by use by
JSP EL. The DSP tag library provides three tags for setting components to EL
variable.

dsp:getvalueof use to access standard java bean components, page

parameters and constant values.


dsp:tomap uses to access non-standard Dynamic beans for example, a
Repository Item
dsp:imporbean use to import nucleus components into JSP page and also can
be used to set standard java bean component to EL variables.

What is syntax for dsp:getvalueof?


Below are the syntax for dsp:getvalueof
<dsp:getvalueof
source-value var="var-name" [scope="scope-spec"] ] >
</getvalueof>

Where source-value specifies the value sources as JavaBean Component, Page


Parameter, or Static value.

bean=nucleus-path/component-name
param=param-name
value=static-value

You might also like